diff --git a/crates/nu-command/src/generators/cal.rs b/crates/nu-command/src/generators/cal.rs index 1c12600ba9..eff85b23f4 100644 --- a/crates/nu-command/src/generators/cal.rs +++ b/crates/nu-command/src/generators/cal.rs @@ -81,10 +81,16 @@ impl Command for Cal { result: None, }, Example { - description: "This month's calendar with the week starting on monday", + description: "This month's calendar with the week starting on Monday", example: "cal --week-start mo", result: None, }, + Example { + description: "How many Friday the 13ths occurred in 2015", + example: "cal --as-table --full-year 2015 | where {$it.fr == 13} | length", + result: None, + //result: Some(Value::test_int(3)), + }, ] } }