diff --git a/docs/builtin/range.md b/docs/builtin/range.md index 256f8a4d..eabf6e3d 100644 --- a/docs/builtin/range.md +++ b/docs/builtin/range.md @@ -108,11 +108,11 @@ Two examples where the `stop` parameter is set to 0 ```python >>> for i in range(0): ... print(i) -# +# ``` ```python >>> for i in range(1,0): ... print(i) -# +# ```