diff --git a/beginner_source/basics/tensorqs_tutorial.py b/beginner_source/basics/tensorqs_tutorial.py index 30297211ee7..3e870f3f0c2 100644 --- a/beginner_source/basics/tensorqs_tutorial.py +++ b/beginner_source/basics/tensorqs_tutorial.py @@ -133,7 +133,7 @@ ###################################################################### # **Joining tensors** You can use ``torch.cat`` to concatenate a sequence of tensors along a given dimension. # See also `torch.stack `__, -# another tensor joining op that is subtly different from ``torch.cat``. +# another tensor joining option that is subtly different from ``torch.cat``. t1 = torch.cat([tensor, tensor, tensor], dim=1) print(t1)