Bläddra i källkod

[Minor] Splitting comment to 2 lines for visibility

Thanks to Tanmay Dharmaraj for bringing this to my attention.
Swaroop C H 12 år sedan
förälder
incheckning
2fa3a80c27
1 ändrade filer med 2 tillägg och 1 borttagningar
  1. 2 1
      09-functions.md

+ 2 - 1
09-functions.md

@@ -359,7 +359,8 @@ def total(initial=5, *numbers, extra_number):
 
 total(10, 1, 2, 3, extra_number=50)
 total(10, 1, 2, 3)
-# Raises error because we have not supplied a default argument value for 'extra_number' #
+# Raises error because we have not supplied a
+# default argument value for 'extra_number'
 ~~~
 
 Output: