소스 검색

[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: