diff --git a/episodes/07-errors.md b/episodes/07-errors.md index 00c62ae97..a5f65a2ea 100644 --- a/episodes/07-errors.md +++ b/episodes/07-errors.md @@ -192,12 +192,11 @@ it *always* means that there is a problem with how your code is indented. > the first two lines are using a tab for indentation, > while the third line uses four spaces: > -> ~~~ -> def some_function(): -> msg = "hello, world!" -> print(msg) -> return msg -> ~~~ +>
def some_function():
+>         msg = "hello, world!"
+>         print(msg)
+>	return msg
+>
> {: .python} > > ~~~