[ez] fix small doc error (#164915)

Pull Request resolved: https://github.com/pytorch/pytorch/pull/164915
Approved by: https://github.com/svekars
This commit is contained in:
bobrenjc93
2025-10-07 20:31:59 -07:00
committed by PyTorch MergeBot
parent 5c827a4133
commit 91b9484264

View File

@ -189,7 +189,7 @@ Here is a quick example:
```{code-cell} ```{code-cell}
import torch import torch
@torch.compile(dynamic=True) @torch.compile
def f(x): def f(x):
return x * x.size()[0] return x * x.size()[0]