Mercurial > repos > public > sbplib_julia
diff src/LazyTensors/tuple_manipulation.jl @ 1215:07c213167f7c feature/dissipation_operators
Fix typos in docstrings
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Tue, 07 Feb 2023 21:40:42 +0100 |
parents | 672610322206 |
children | 5bfb182e24dc |
line wrap: on
line diff
--- a/src/LazyTensors/tuple_manipulation.jl Tue Feb 07 21:06:48 2023 +0100 +++ b/src/LazyTensors/tuple_manipulation.jl Tue Feb 07 21:40:42 2023 +0100 @@ -78,7 +78,7 @@ """ left_pad_tuple(t, val, N) -Left pad the `t` to length `N` using the value `val`. +Left pad the tuple `t` to length `N` using the value `val`. """ function left_pad_tuple(t, val, N) if N < length(t) @@ -92,7 +92,7 @@ """ right_pad_tuple(t, val, N) -Right pad the `t` to length `N` using the value `val`. +Right pad the tuple `t` to length `N` using the value `val`. """ function right_pad_tuple(t, val, N) if N < length(t)