mirror of
https://github.com/NixOS/nix.git
synced 2025-11-09 03:56:01 +01:00
fix doc code example
Fixed nix shell's doc's shebang python example
This commit is contained in:
parent
0fd9ef0cf3
commit
ccc0a31f39
1 changed files with 1 additions and 1 deletions
|
|
@ -83,7 +83,7 @@ import prettytable
|
|||
# Print a simple table.
|
||||
t = prettytable.PrettyTable(["N", "N^2"])
|
||||
for n in range(1, 10): t.add_row([n, n * n])
|
||||
print t
|
||||
print(t)
|
||||
```
|
||||
|
||||
Similarly, the following is a Perl script that specifies that it
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue