Browse Source

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

SVI 2 years ago
parent
commit
e410fe5886
2 changed files with 5 additions and 5 deletions
  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:
 
 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
         in
         out
-        LIFO
+        FIFO
         subgraph property
             len
             cap
@@ -58,9 +58,9 @@ flowchart LR
     end
     flow1 --> |data|in
     mutex --> in
-    in --> LIFO
-    LIFO --> out
-    mutex --> LIFO
+    in --> FIFO
+    FIFO --> out
+    mutex --> FIFO
     out --> |data|flow2
     mutex --> out
 ```