diff --git a/blog/2026-08-15-nushell_v0_115_0.md b/blog/2026-08-15-nushell_v0_115_0.md
index 79566ac3773..c63aa005635 100644
--- a/blog/2026-08-15-nushell_v0_115_0.md
+++ b/blog/2026-08-15-nushell_v0_115_0.md
@@ -128,7 +128,7 @@ Tags also mean tags now. Previously, tagged scalars weren't really handled prope
{|| $in } | to yaml
# Error: closures are not round-trippable through YAML
-{|| $in } | to yaml --non-roundtrip null
+{|| $in } | to yaml --non-roundtrip "null"
# => null
{|| $in } | to yaml --serialize
@@ -251,7 +251,7 @@ For example, `--quote` and `--indent` can help when another tool expects a parti
```yaml
outer:
- inner: 'value'
+ inner: "value"
```
### Disallowed shadowing parser keywords