From ccc0a31f3973c79acd4144ca1beae727f4521f96 Mon Sep 17 00:00:00 2001 From: Manse Date: Sun, 17 Aug 2025 00:39:41 -0300 Subject: [PATCH] fix doc code example Fixed nix shell's doc's shebang python example --- src/nix/shell.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nix/shell.md b/src/nix/shell.md index 677151a85..1e44c2478 100644 --- a/src/nix/shell.md +++ b/src/nix/shell.md @@ -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