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:
Joseph T. Lyons
2022-02-21 08:38:15 -05:00
committed by GitHub
parent 968427c4e9
commit 4f367a59de
33 changed files with 83 additions and 83 deletions

View File

@ -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",
)