Skip to content

Commit cfa8efb

Browse files
author
Kenneth Reitz
committed
Merge pull request realpython#195 from silkuze/patch-1
Missing a semicolon in the function definition
2 parents 63165d8 + f2ca4ea commit cfa8efb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/writing/structure.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -347,7 +347,7 @@ Some guidelines help to avoid this issue:
347347
348348
count = 1
349349
msg = 'a string'
350-
def func()
350+
def func():
351351
pass # Do something
352352
353353
Using short functions or methods helps reduce the risk

0 commit comments

Comments
 (0)