diff --git a/moshi/moshi/utils/compile.py b/moshi/moshi/utils/compile.py index 780513b..f84f8e4 100644 --- a/moshi/moshi/utils/compile.py +++ b/moshi/moshi/utils/compile.py @@ -241,7 +241,7 @@ def _match_values_copy_tensors(args: tuple, target_args: tuple) -> None: ) if source.shape != target.shape: raise ValueError( - f"Argument #{idx} had shape {target.shape}, but got shae {source.shape}" + f"Argument #{idx} had shape {target.shape}, but got shape {source.shape}" ) target.copy_(source) else: