Fix four misspellings of "its" in documentation (#125681)

Pull Request resolved: https://github.com/pytorch/pytorch/pull/125681
Approved by: https://github.com/Skylion007, https://github.com/svekars
This commit is contained in:
Tom Ritchford
2024-05-13 18:14:09 +00:00
committed by PyTorch MergeBot
parent 7f1d5aba93
commit 4d8fa7df40
3 changed files with 4 additions and 4 deletions

View File

@ -790,7 +790,7 @@ USE_PRECOMPILED_HEADERS=1 python setup.py develop
```
This adds a build step where the compiler takes `<ATen/ATen.h>` and essentially
dumps it's internal AST to a file so the compiler can avoid repeating itself for
dumps its internal AST to a file so the compiler can avoid repeating itself for
every `.cpp` file.
One caveat is that when enabled, this header gets included in every file by default.
@ -1321,7 +1321,7 @@ There are two possible choices for which commit to use:
1. Checkout commit `B`, the head of the PR (manually committed by the PR
author).
2. Checkout commit `C`, the hypothetical result of what would happen if the PR
were merged into it's destination (usually `main`).
were merged into its destination (usually `main`).
For all practical purposes, most people can think of the commit being used as
commit `B` (choice **1**).