changeset 1216:fb7c360b22a7 feature/dissipation_operators

Merge
author Jonatan Werpers <jonatan@werpers.com>
date Tue, 07 Feb 2023 21:42:02 +0100
parents 07c213167f7c (diff) 559b623e6a95 (current diff)
children ac08178c5a9b
files
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/LazyTensors/tuple_manipulation.jl	Tue Feb 07 21:30:33 2023 +0100
+++ b/src/LazyTensors/tuple_manipulation.jl	Tue Feb 07 21:42:02 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)