mirror of
https://github.com/nushell/nushell.git
synced 2025-08-17 11:51:46 +02:00
Strip trailing whitespace in files (#4575)
* Strip trailing whitespace in rs files * Strip trailing whitespace in toml files * Strip trailing whitespace in md files * Strip trailing whitespace in nu files
This commit is contained in:
@ -232,8 +232,8 @@ def 'call-me' [] {
|
||||
echo $CONST_A
|
||||
}
|
||||
|
||||
[(say-hi) (call-me)] | str collect
|
||||
|
||||
[(say-hi) (call-me)] | str collect
|
||||
|
||||
"#,
|
||||
"HelloHello",
|
||||
)
|
||||
@ -253,8 +253,8 @@ def 'say-hi' [] {
|
||||
echo (call-me)
|
||||
}
|
||||
|
||||
[(say-hi) (call-me)] | str collect
|
||||
|
||||
[(say-hi) (call-me)] | str collect
|
||||
|
||||
"#,
|
||||
"HelloHello",
|
||||
)
|
||||
@ -274,8 +274,8 @@ def 'call-me' [] {
|
||||
echo $CONST_A
|
||||
}
|
||||
|
||||
[(call-me) (say-hi)] | str collect
|
||||
|
||||
[(call-me) (say-hi)] | str collect
|
||||
|
||||
"#,
|
||||
"HelloHello",
|
||||
)
|
||||
@ -295,8 +295,8 @@ def 'say-hi' [] {
|
||||
echo (call-me)
|
||||
}
|
||||
|
||||
[(call-me) (say-hi)] | str collect
|
||||
|
||||
[(call-me) (say-hi)] | str collect
|
||||
|
||||
"#,
|
||||
"HelloHello",
|
||||
)
|
||||
|
Reference in New Issue
Block a user