Skip to content

Commit ce443de

Browse files
AJV009facebook-github-bot
authored andcommittedJul 20, 2020
Grammar patch 1 (.md) (pytorch#41599)
Summary: A minor spell check! I have gone through a dozen of .md files to fix the typos. zou3519 take a look! Pull Request resolved: pytorch#41599 Reviewed By: ezyang Differential Revision: D22601629 Pulled By: zou3519 fbshipit-source-id: 68d8f77ad18edc1e77874f778b7dadee04b393ef
1 parent 6769b85 commit ce443de

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed
 

‎.circleci/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -446,7 +446,7 @@ export DESIRED_CUDA=cpu
446446

447447
To build a CUDA binary you need to use `nvidia-docker run` instead of just `docker run` (or you can manually pass `--runtime=nvidia`). This adds some needed libraries and things to build CUDA stuff.
448448

449-
You can build CUDA binaries on CPU only machines, but you can only run CUDA binaries on CUDA machines. This means that you can build a CUDA binary on a docker on your laptop if you so choose (though it’s gonna take a loong time).
449+
You can build CUDA binaries on CPU only machines, but you can only run CUDA binaries on CUDA machines. This means that you can build a CUDA binary on a docker on your laptop if you so choose (though it’s gonna take a long time).
450450

451451
For Facebook employees, ask about beefy machines that have docker support and use those instead of your laptop; it will be 5x as fast.
452452

‎CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ To build the documentation:
238238

239239
1. Build and install PyTorch
240240

241-
2. Install the prequesities
241+
2. Install the prerequisites
242242

243243
```bash
244244
cd docs

‎caffe2/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Caffe2 is a lightweight, modular, and scalable deep learning framework. Building
66

77
## Questions and Feedback
88

9-
Please use Github issues (https://github.com/pytorch/pytorch/issues) to ask questions, report bugs, and request new features.
9+
Please use GitHub issues (https://github.com/pytorch/pytorch/issues) to ask questions, report bugs, and request new features.
1010

1111
### Further Resources on [Caffe2.ai](http://caffe2.ai)
1212

‎docs/caffe2/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ Note that the bang (!) is added after the opening comment """! - this seems to d
197197

198198
### Other Notes
199199

200-
Useful for xcode, currently off
200+
Useful for Xcode, currently off
201201
GENERATE_DOCSET = NO
202202

203203
Look at search engine integration, xml output, etc

‎test/HowToWriteTestsUsingFileCheck.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ CHECK` pragmas and essentially it sees the input string like this:
6161
```
6262

6363
It then checks that the optimized IR satisfies the specified annotations. It
64-
first finds string `%x : Tensor = aten::mul(%a, %b)` matching the annotion (1),
64+
first finds string `%x : Tensor = aten::mul(%a, %b)` matching the annotation (1),
6565
then it finds string `return (%x, %x)` matching the annotation (3), and since
6666
there were no lines matching `aten::mul` after the match (1) and before the
6767
match (3), the annotation (2) is also satisfied.

‎third_party/miniz-2.0.8/ChangeLog.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
### 2.0.7
1111

1212
- Removed need in C++ compiler in cmake build
13-
- Fixed loads of uninitilized value errors found with Valgrind by memsetting m_dict to 0 in tdefl_init.
13+
- Fixed loads of uninitialized value errors found with Valgrind by memsetting m_dict to 0 in tdefl_init.
1414
- Fix resource leak in mz_zip_reader_init_file_v2
1515
- Fix assert with mz_zip_writer_add_mem* w/MZ_DEFAULT_COMPRESSION
1616
- cmake build: install library and headers
@@ -66,7 +66,7 @@ The inflator now has a new failure status TINFL_STATUS_FAILED_CANNOT_MAKE_PROGRE
6666
- The inflator coroutine func. is subtle and complex so I'm being cautious about this release. I would greatly appreciate any help with testing or any feedback.
6767
I feel good about these changes, and they've been through several hours of automated testing, but they will probably not fix anything for the majority of prev. users so I'm
6868
going to mark this release as beta for a few weeks and continue testing it at work/home on various things.
69-
- The inflator in raw (non-zlib) mode is now usable on gzip or similiar data streams that have a bunch of bytes following the raw deflate data (problem discovered by rustyzip author williamw520).
69+
- The inflator in raw (non-zlib) mode is now usable on gzip or similar data streams that have a bunch of bytes following the raw deflate data (problem discovered by rustyzip author williamw520).
7070
This version should *never* read beyond the last byte of the raw deflate data independent of how many bytes you pass into the input buffer. This issue was caused by the various Huffman bitbuffer lookahead optimizations, and
7171
would not be an issue if the caller knew and enforced the precise size of the raw compressed data *or* if the compressed data was in zlib format (i.e. always followed by the byte aligned zlib adler32).
7272
So in other words, you can now call the inflator on deflate streams that are followed by arbitrary amounts of data and it's guaranteed that decompression will stop exactly on the last byte.
@@ -104,7 +104,7 @@ Interim bugfix release while I work on the next major release with zip64 and str
104104
- Retested this build under Windows (VS 2010, including static analysis), tcc 0.9.26, gcc v4.6 and clang v3.3.
105105
- Added example6.c, which dumps an image of the mandelbrot set to a PNG file.
106106
- Modified example2 to help test the MZ_ZIP_FLAG_DO_NOT_SORT_CENTRAL_DIRECTORY flag more.
107-
- In r3: Bugfix to mz_zip_writer_add_file() found during merge: Fix possible src file fclose() leak if alignment bytes+local header file write faiiled
107+
- In r3: Bugfix to mz_zip_writer_add_file() found during merge: Fix possible src file fclose() leak if alignment bytes+local header file write failed
108108
- In r4: Minor bugfix to mz_zip_writer_add_from_zip_reader(): Was pushing the wrong central dir header offset, appears harmless in this release, but it became a problem in the zip64 branch
109109

110110
### v1.14 - May 20, 2012

‎torch/csrc/jit/tensorexpr/DesignOverview.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -111,5 +111,5 @@ The code for constructing such an expression could look like this:
111111
# Memory model
112112
TBD
113113

114-
# Integartion with PyTorch JIT
114+
# Integration with PyTorch JIT
115115
TBD

0 commit comments

Comments
 (0)
Please sign in to comment.