diff --git a/README.md b/README.md index d2eefe6..c0d7fce 100644 --- a/README.md +++ b/README.md @@ -207,7 +207,7 @@ Input/output types: ╰──────────────────name───────────────────┴─type─╯ > sys host | get boot_time -Thu, 8 Aug 2024 10:04:12 +0000 (2 weeks ago) +Thu, 22 Aug 2024 11:02:48 +0000 (2 days ago) > 2 + 2 4 diff --git a/numd/nu-utils/numd-internals.nu b/numd/nu-utils/numd-internals.nu index 43b673b..8e984fb 100644 --- a/numd/nu-utils/numd-internals.nu +++ b/numd/nu-utils/numd-internals.nu @@ -553,7 +553,7 @@ export def --env load-config [ # Generate a timestamp string in the format YYYYMMDD_HHMMSS. # # > generate-timestamp -# 20240824_110937 +# 20240825_091300 export def generate-timestamp []: nothing -> string { date now | format date "%Y%m%d_%H%M%S" } diff --git a/z_examples/4_book_working_with_lists/working_with_lists.md_intermed.nu b/z_examples/4_book_working_with_lists/working_with_lists.md_intermed.nu index e566b38..1d6799a 100644 --- a/z_examples/4_book_working_with_lists/working_with_lists.md_intermed.nu +++ b/z_examples/4_book_working_with_lists/working_with_lists.md_intermed.nu @@ -162,7 +162,7 @@ $colors | where ($it | str ends-with 'e') let colors = [red orange yellow green blue purple] $colors | where ($it | str ends-with 'e') -# The block passed to `where` must evaluate to a boolean. | table | print; print '' +# The block passed to `where` must evaluate to a boolean. "```" | print