Fix two typos in gdb_binary_search.h
authorTom Tromey <tom@tromey.com>
Sun, 8 Mar 2020 17:05:43 +0000 (11:05 -0600)
committerTom Tromey <tom@tromey.com>
Sun, 8 Mar 2020 17:05:43 +0000 (11:05 -0600)
I noticed a couple of typos in gdb_binary_search.h.  This fixes them.

gdbsupport/ChangeLog
2020-03-08  Tom Tromey  <tom@tromey.com>

* gdb_binary_search.h: Fix two typos.

gdbsupport/ChangeLog
gdbsupport/gdb_binary_search.h

index 04944a17b4ff2dc3bdbc9369aad7a86a97e508fa..0fbb71d9e5613f7805acae4dca35fc039d309126 100644 (file)
@@ -1,3 +1,7 @@
+2020-03-08  Tom Tromey  <tom@tromey.com>
+
+       * gdb_binary_search.h: Fix two typos.
+
 2020-03-06  Andrew Burgess  <andrew.burgess@embecosm.com>
 
        * .dir-locals.el: New file.
 2020-03-06  Andrew Burgess  <andrew.burgess@embecosm.com>
 
        * .dir-locals.el: New file.
index a4560151e0600e541782f2f11261937ec288eefe..ddda415462e0a5d0d113c4bc55d89007c14992d0 100644 (file)
@@ -26,9 +26,9 @@
 namespace gdb {
 
 /* Implements a binary search using C++ iterators.
 namespace gdb {
 
 /* Implements a binary search using C++ iterators.
-   This differs from std::binary_search in that it returns an interator for
+   This differs from std::binary_search in that it returns an iterator for
    the found element and in that the type of EL can be different from the
    the found element and in that the type of EL can be different from the
-   type of the elements in the countainer.
+   type of the elements in the container.
 
    COMP is a C-style comparison function with signature:
    int comp(const value_type& a, const T& b);
 
    COMP is a C-style comparison function with signature:
    int comp(const value_type& a, const T& b);
This page took 0.026944 seconds and 4 git commands to generate.