瀏覽代碼

[Minor] Splitting comment to 2 lines for visibility

Thanks to Tanmay Dharmaraj for bringing this to my attention.
Swaroop C H 12 年之前
父節點
當前提交
2fa3a80c27
共有 1 個文件被更改,包括 2 次插入1 次删除
  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: