Index: doc/papers/concurrency/examples/Fib2.py
===================================================================
--- doc/papers/concurrency/examples/Fib2.py	(revision 17c6c1c38def3a07c82e33193f89279c6e5b5e63)
+++ doc/papers/concurrency/examples/Fib2.py	(revision 7dafb7b135da66032fbd090d190c88d338699333)
@@ -1,6 +1,6 @@
 def Fib():
-    fn1, fn = 0, 1
+    fn1, fn = 1, 0
     while True:
-        yield fn1
+        yield fn
         fn1, fn = fn, fn1 + fn
 
@@ -12,4 +12,4 @@
 # Local Variables: #
 # tab-width: 4 #
-# compile-command: "python3.5 Fib2.py" #
+# compile-command: "python3.7 Fib2.py" #
 # End: #
