mirror of
https://github.com/nushell/nushell.git
synced 2025-08-10 05:38:19 +02:00
Fix typos and use more idiomatic assertions (#7755)
I have changed `assert!(a == b)` calls to `assert_eq!(a, b)`, which give better error messages. Similarly for `assert!(a != b)` and `assert_ne!(a, b)`. Basically all instances were comparing primitives (string slices or integers), so there is no loss of generality from special-case macros, I have also fixed a number of typos in comments, variable names, and a few user-facing messages.
This commit is contained in:
@ -46,7 +46,7 @@ impl Command for SubCommand {
|
||||
fn examples(&self) -> Vec<Example> {
|
||||
let e = std::f64::consts::E;
|
||||
vec![Example {
|
||||
description: "Apply the hyperpolic cosine to 1",
|
||||
description: "Apply the hyperbolic cosine to 1",
|
||||
example: "1 | math cosh",
|
||||
result: Some(Value::test_float(((e * e) + 1.0) / (2.0 * e))),
|
||||
}]
|
||||
|
@ -46,7 +46,7 @@ impl Command for SubCommand {
|
||||
fn examples(&self) -> Vec<Example> {
|
||||
let e = std::f64::consts::E;
|
||||
vec![Example {
|
||||
description: "Apply the hyperpolic sine to 1",
|
||||
description: "Apply the hyperbolic sine to 1",
|
||||
example: "1 | math sinh",
|
||||
result: Some(Value::test_float((e * e - 1.0) / (2.0 * e))),
|
||||
}]
|
||||
|
@ -45,7 +45,7 @@ impl Command for SubCommand {
|
||||
|
||||
fn examples(&self) -> Vec<Example> {
|
||||
vec![Example {
|
||||
description: "Apply the hyperpolic tangent to 10*pi",
|
||||
description: "Apply the hyperbolic tangent to 10*pi",
|
||||
example: "(math pi) * 10 | math tanh",
|
||||
result: Some(Value::test_float(1f64)),
|
||||
}]
|
||||
|
Reference in New Issue
Block a user