mirror of
https://github.com/nushell/nushell.git
synced 2025-08-09 14:15:53 +02:00
Fix a bunch of future clippy warnings (#3586)
* Fix a bunch of future clippy warnings * Fix a bunch of future clippy warnings
This commit is contained in:
@ -536,12 +536,12 @@ impl Value {
|
||||
|
||||
/// Returns an iterator of the values rows
|
||||
pub fn table_entries(&self) -> TableValueIter<'_> {
|
||||
crate::value::iter::table_entries(&self)
|
||||
crate::value::iter::table_entries(self)
|
||||
}
|
||||
|
||||
/// Returns an iterator of the value's cells
|
||||
pub fn row_entries(&self) -> RowValueIter<'_> {
|
||||
crate::value::iter::row_entries(&self)
|
||||
crate::value::iter::row_entries(self)
|
||||
}
|
||||
|
||||
/// Returns true if the value is empty
|
||||
|
@ -78,7 +78,7 @@ impl ColumnPath {
|
||||
span: _,
|
||||
},
|
||||
_,
|
||||
) = parse(&text)
|
||||
) = parse(text)
|
||||
{
|
||||
ColumnPath {
|
||||
members: path.iter().map(|member| member.to_path_member()).collect(),
|
||||
|
Reference in New Issue
Block a user