Fixed grammatical error (#169791)

Fixed some grammatical errors and typos in the CONTRIBUTING.md file

Pull Request resolved: https://github.com/pytorch/pytorch/pull/169791
Approved by: https://github.com/jbschlosser
This commit is contained in:
Ahmad
2025-12-16 04:28:05 +00:00
committed by PyTorch MergeBot
parent f3106973c2
commit 491cce6cfc

View File

@@ -130,7 +130,7 @@ Follow the instructions for [installing PyTorch from source](https://github.com/
```
* If you run into issue running `git submodule update --init --recursive`. Please try the following:
* If you run into an issue running `git submodule update --init --recursive`, please try the following:
- If you encounter an error such as
```
error: Submodule 'third_party/pybind11' could not be updated
@@ -142,8 +142,8 @@ Follow the instructions for [installing PyTorch from source](https://github.com/
```
fatal: unable to access 'https://github.com/pybind/pybind11.git': could not load PEM client certificate ...
```
this is likely that you are using HTTP proxying and the certificate expired. To check if the certificate is valid, run
`git config --global --list` and search for config like `http.proxysslcert=<cert_file>`. Then check certificate valid date by running
it is likely that you are using HTTP proxying and the certificate expired. To check if the certificate is valid, run
`git config --global --list` and search for config like `http.proxysslcert=<cert_file>`. Then check certificate validity dates by running
```bash
openssl x509 -noout -in <cert_file> -dates
```