cleaning up and adding comments

This commit is contained in:
Michael Downey 2021-11-09 14:37:31 -05:00
parent c0c45f6d39
commit 7e074d300e
5 changed files with 9 additions and 3 deletions

View file

@ -1285,6 +1285,7 @@ fn str_trim(symbol: Symbol, var_store: &mut VarStore) -> Def {
lowlevel_1(symbol, LowLevel::StrTrim, var_store)
}
/// Str.trimLeft : Str -> Str
fn str_trim_left(symbol: Symbol, var_store: &mut VarStore) -> Def {
lowlevel_1(symbol, LowLevel::StrTrimLeft, var_store)
}