Skip to content

Commit 14016f7

Browse files
author
Svetlana Karslioglu
authored
Update intermediate_source/torch_export_tutorial.py
fix typo
1 parent cfdaecd commit 14016f7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

intermediate_source/torch_export_tutorial.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ def forward(self, x, y):
6262
# that is, the computation graph of all PyTorch operations.
6363
# The FX graph has some important properties:
6464
# - The operations are "ATen-level" operations.
65-
# - The graph is "functionalized", meaning that no operations are mutatations.
65+
# - The graph is "functionalized", meaning that no operations are mutations.
6666
#
6767
# The ``graph_module`` attribute is the ``GraphModule`` that wraps the ``graph`` attribute
6868
# so that it can be ran as a ``torch.nn.Module``.

0 commit comments

Comments
 (0)