Pārlūkot izejas kodu

Update fiber.md

Marco Bambini 7 gadi atpakaļ
vecāks
revīzija
abe3b5919a
1 mainītis faili ar 2 papildinājumiem un 2 dzēšanām
  1. 2 2
      docs/fiber.md

+ 2 - 2
docs/fiber.md

@@ -27,14 +27,14 @@ A Fiber is created with `create`:
 
 ```swift
 	Fiber.create( {
-		System.print("/(self) is the current fiber")
+		System.print("\(self) is the current fiber")
 	})
 ```
 and executed till the next `yield` with `fiber.call()`
 
 ```swift
 var closure = {
-	System.print("1")
+    System.print("1")
     Fiber.yield()
 
     System.print("2")