Ver código fonte

SVI Исправления

SVI 2 anos atrás
pai
commit
e410fe5886
2 arquivos alterados com 5 adições e 5 exclusões
  1. 1 1
      LICENSE
  2. 4 4
      docs/lessons02.md

+ 1 - 1
LICENSE

@@ -1,4 +1,4 @@
-Copyright (c) <year> <owner> All rights reserved.
+Copyright (c) 2023 Author:SVI All rights reserved.
 Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
 Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
 
 
 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.

+ 4 - 4
docs/lessons02.md

@@ -49,7 +49,7 @@ flowchart LR
         mutex
         mutex
         in
         in
         out
         out
-        LIFO
+        FIFO
         subgraph property
         subgraph property
             len
             len
             cap
             cap
@@ -58,9 +58,9 @@ flowchart LR
     end
     end
     flow1 --> |data|in
     flow1 --> |data|in
     mutex --> in
     mutex --> in
-    in --> LIFO
-    LIFO --> out
-    mutex --> LIFO
+    in --> FIFO
+    FIFO --> out
+    mutex --> FIFO
     out --> |data|flow2
     out --> |data|flow2
     mutex --> out
     mutex --> out
 ```
 ```