Skip to content

Commit

Permalink
+ => -
Browse files Browse the repository at this point in the history
  • Loading branch information
coatless committed Feb 19, 2024
1 parent c69447d commit dbccc78
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ This is a pyodide-enabled code cell in a Quarto HTML document.
n = 5
while n > 0:
print(n)
n = n + 1
n = n - 1
print('Blastoff!')
```
Expand Down
2 changes: 1 addition & 1 deletion examples/readme/index.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ This is a pyodide-enabled code cell in a Quarto HTML document.
n = 5
while n > 0:
print(n)
n = n + 1
n = n - 1
print('Blastoff!')
```
Expand Down

0 comments on commit dbccc78

Please sign in to comment.