diff options
author | Bruce Mitchener <bruce.mitchener@gmail.com> | 2015-07-02 18:48:40 +0000 |
---|---|---|
committer | Bruce Mitchener <bruce.mitchener@gmail.com> | 2015-07-02 18:48:40 +0000 |
commit | a868c13c51a60dec1870c7b3896e509b9bfab9cc (patch) | |
tree | 71b27b979c8bcad56472a0b26b28c159a3f4a472 /lldb/examples/synthetic/unordered_multi.py | |
parent | b1ca4eb6ae07133c54dd1953d2ace666d358bf33 (diff) | |
download | llvm-a868c13c51a60dec1870c7b3896e509b9bfab9cc.zip llvm-a868c13c51a60dec1870c7b3896e509b9bfab9cc.tar.gz llvm-a868c13c51a60dec1870c7b3896e509b9bfab9cc.tar.bz2 |
Fix typos
Summary: Fixes more typos.
Reviewers: clayborg
Subscribers: lldb-commits-list
Differential Revision: http://reviews.llvm.org/D10898
llvm-svn: 241289
Diffstat (limited to 'lldb/examples/synthetic/unordered_multi.py')
-rw-r--r-- | lldb/examples/synthetic/unordered_multi.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lldb/examples/synthetic/unordered_multi.py b/lldb/examples/synthetic/unordered_multi.py index a5cb981..15bcb02 100644 --- a/lldb/examples/synthetic/unordered_multi.py +++ b/lldb/examples/synthetic/unordered_multi.py @@ -15,7 +15,7 @@ class libcxx_hash_table_SynthProvider: self.next_element = None self.bucket_count = None try: - # unordered_map is made up a a hash_map, which has 4 pieces in it: + # unordered_map is made up of a hash_map, which has 4 pieces in it: # bucket list : # array of buckets # p1 (pair): @@ -27,7 +27,7 @@ class libcxx_hash_table_SynthProvider: # first - max_load_factor # second - equality operator function # - # For display, we actually dont need to go inside the buckets, since 'p1' has a way to iterate over all + # For display, we actually don't need to go inside the buckets, since 'p1' has a way to iterate over all # the elements directly. # # We will calculate other values about the map because they will be useful for the summary. @@ -46,7 +46,7 @@ class libcxx_hash_table_SynthProvider: logger >> "Num elements = %r" % self.num_elements # save the pointers as we get them - # -- dont access this first element if num_element==0! + # -- don't access this first element if num_element==0! self.elements_cache = [] if self.num_elements: self.next_element = self.begin_ptr |