You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
He made his changes a PR to the GitHub Sage repo and got it merged to the
351
+
``develop`` branch. His ``fibonacci`` function is not yet perfect but is
352
+
certainly better than the original.
349
353
350
-
He made her changes a PR to the GitHub sage repo and quickly got merged to the ``develop`` branch. Yes, his `fibonacci` function is not yet perfect but is certainly better than the original. Meanwhile, Alice changed the
351
-
multiplication to an addition since that is the correct recursion
352
-
formula:
354
+
Meanwhile, Alice changed the multiplication to an addition since that is the
355
+
correct recursion formula:
353
356
354
357
.. CODE-BLOCK:: python
355
358
@@ -359,11 +362,12 @@ formula:
359
362
"""
360
363
return fibonacci(i-1) + fibonacci(i-2)
361
364
362
-
and merged his branch with the latest ``develop`` branch fetched from the GitHub Sage repo::
365
+
and merged her branch with the latest ``develop`` branch fetched from the GitHub Sage repo::
363
366
364
-
[bob@home sage]$ git add fibonacci.py
365
-
[bob@home sage]$ git commit -m 'corrected recursion formula, must be + instead of *'
366
-
[bob@home sage]$ git merge develop
367
+
[alice@home sage]$ git add fibonacci.py
368
+
[alice@home sage]$ git commit -m 'corrected recursion formula, must be + instead of *'
0 commit comments