Skip to content

Commit 26d3218

Browse files
committed
fix indentations
1 parent e06d5d5 commit 26d3218

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

book/working_with_records.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -87,11 +87,11 @@ To make a copy of a record with new fields, you can either:
8787
```nu
8888
let first_record = { name: "Sam", rank: 10 }
8989
$first_record | merge { title: "Mayor" }
90-
# => ╭───────┬───────╮
91-
# => │ name │ Sam │
92-
# => │ rank │ 10 │
93-
# => │ title │ Mayor │
94-
# => ╰───────┴───────╯
90+
# => ╭───────┬───────╮
91+
# => │ name │ Sam │
92+
# => │ rank │ 10 │
93+
# => │ title │ Mayor │
94+
# => ╰───────┴───────╯
9595
```
9696

9797
- Use the [spread operator](/book/operators#spread-operator) (`...`) to expand the first record inside a new record:

0 commit comments

Comments
 (0)