From 7a018e36493d8c54c35483723aa6af5c27035888 Mon Sep 17 00:00:00 2001 From: Pierre Ambroise <74421318+Fan2Shrek@users.noreply.github.com> Date: Mon, 2 Jun 2025 13:50:03 +0200 Subject: [PATCH] Close quote in each example --- lang-guide/chapters/filters/each-par-each.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/lang-guide/chapters/filters/each-par-each.md b/lang-guide/chapters/filters/each-par-each.md index 6aab2a30564..47ba6fb484e 100644 --- a/lang-guide/chapters/filters/each-par-each.md +++ b/lang-guide/chapters/filters/each-par-each.md @@ -12,7 +12,7 @@ ls | transpose key value | inspect | each {|kv| - $'The value of the "($kv.key) field is "($kv.value)"' + $'The value of the "($kv.key)" field is "($kv.value)"' } ``` @@ -30,10 +30,10 @@ Result: │ modified │ 2024-01-31T10:21:46.068408713-05:00 │ ╰──────────┴─────────────────────────────────────╯ -╭───┬──────────────────────────────────────────────────────────────────────────────────────╮ -│ 0 │ The value of the "name field is "CNAME" │ -│ 1 │ The value of the "type field is "file" │ -│ 2 │ The value of the "size field is "15 B" │ -│ 3 │ The value of the "modified field is "Wed, 31 Jan 2024 10:21:46 -0500 (3 months ago)" │ -╰───┴──────────────────────────────────────────────────────────────────────────────────────╯ +╭───┬───────────────────────────────────────────────────────────────────────────────────────╮ +│ 0 │ The value of the "name" field is "CNAME" │ +│ 1 │ The value of the "type" field is "file" │ +│ 2 │ The value of the "size" field is "15 B" │ +│ 3 │ The value of the "modified" field is "Wed, 31 Jan 2024 10:21:46 -0500 (3 months ago)" │ +╰───┴───────────────────────────────────────────────────────────────────────────────────────╯ ```