Skip to content

Commit a08b49b

Browse files
authored
fix missing quote
1 parent 53447ae commit a08b49b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

blog/2023-10-17-nushell_0_86.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ custom commands. With [#10424](https://github.com/nushell/nushell/pull/10424), d
199199
overwrite type annotations anymore, i.e. the following is now possible:
200200

201201
```nushell
202-
def foo [x: any = null] { print $"$x }
202+
def foo [x: any = null] { print $"$x" }
203203
204204
foo "string" # will show `x: string`
205205
foo null # will show `x: `

0 commit comments

Comments
 (0)