mirror of
https://github.com/nushell/nushell.git
synced 2025-07-01 07:00:37 +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:
@ -786,7 +786,7 @@ impl EngineState {
|
||||
aliases.into_iter()
|
||||
}
|
||||
|
||||
/// Get all commands within scope, sorted by the commads' names
|
||||
/// Get all commands within scope, sorted by the commands' names
|
||||
pub fn get_decls_sorted(
|
||||
&self,
|
||||
include_hidden: bool,
|
||||
|
@ -68,9 +68,9 @@ impl Visibility {
|
||||
|
||||
#[derive(Debug, Clone)]
|
||||
pub struct ScopeFrame {
|
||||
/// List of both active and incactive overlays in this ScopeFrame.
|
||||
/// List of both active and inactive overlays in this ScopeFrame.
|
||||
///
|
||||
/// The order does not have any menaning. Indexed locally (within this ScopeFrame) by
|
||||
/// The order does not have any meaning. Indexed locally (within this ScopeFrame) by
|
||||
/// OverlayIds in active_overlays.
|
||||
pub overlays: Vec<(Vec<u8>, OverlayFrame)>,
|
||||
|
||||
|
Reference in New Issue
Block a user