diff options
author | Stephen Hines <srhines@google.com> | 2017-07-25 17:52:55 +0000 |
---|---|---|
committer | Stephen Hines <srhines@google.com> | 2017-07-25 17:52:55 +0000 |
commit | 24e8c439a3ecfc4b798238d96612d06e747d742c (patch) | |
tree | 446fc344ca412ed4c36b08df4482e62e290c7568 /llvm/docs/ProgrammersManual.rst | |
parent | afc70ab3e204feb4b3e227d430b9ffa0be04e4e6 (diff) | |
download | bcm5719-llvm-24e8c439a3ecfc4b798238d96612d06e747d742c.tar.gz bcm5719-llvm-24e8c439a3ecfc4b798238d96612d06e747d742c.zip |
[docs] Fix a typo: iteratation -> iteration
Reviewers: dgross
Reviewed By: dgross
Subscribers: dgross, llvm-commits
Differential Revision: https://reviews.llvm.org/D35822
llvm-svn: 308994
Diffstat (limited to 'llvm/docs/ProgrammersManual.rst')
-rw-r--r-- | llvm/docs/ProgrammersManual.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/docs/ProgrammersManual.rst b/llvm/docs/ProgrammersManual.rst index d115a9cf6de..501b5c00d69 100644 --- a/llvm/docs/ProgrammersManual.rst +++ b/llvm/docs/ProgrammersManual.rst @@ -2105,7 +2105,7 @@ is stored in the same allocation as the Value of a pair). StringMap also provides query methods that take byte ranges, so it only ever copies a string if a value is inserted into the table. -StringMap iteratation order, however, is not guaranteed to be deterministic, so +StringMap iteration order, however, is not guaranteed to be deterministic, so any uses which require that should instead use a std::map. .. _dss_indexmap: |