From a868c13c51a60dec1870c7b3896e509b9bfab9cc Mon Sep 17 00:00:00 2001 From: Bruce Mitchener Date: Thu, 2 Jul 2015 18:48:40 +0000 Subject: Fix typos Summary: Fixes more typos. Reviewers: clayborg Subscribers: lldb-commits-list Differential Revision: http://reviews.llvm.org/D10898 llvm-svn: 241289 --- lldb/examples/synthetic/unordered_multi.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lldb/examples/synthetic/unordered_multi.py') diff --git a/lldb/examples/synthetic/unordered_multi.py b/lldb/examples/synthetic/unordered_multi.py index a5cb981b4fc..15bcb02a582 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 -- cgit v1.2.3