Mercurial > repos > public > sbplib_julia
changeset 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 | d60a10ad6579 |
children | fb7c360b22a7 |
files | src/LazyTensors/tuple_manipulation.jl |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
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)