GNU Binutils with patches for OS216
Revisión | e63ee24f98f0648d1a88f9a74bd60a7278aeda2c (tree) |
---|---|
Tiempo | 2020-03-09 02:05:43 |
Autor | Tom Tromey <tom@trom...> |
Commiter | Tom Tromey |
Fix two typos in gdb_binary_search.h
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.
@@ -1,3 +1,7 @@ | ||
1 | +2020-03-08 Tom Tromey <tom@tromey.com> | |
2 | + | |
3 | + * gdb_binary_search.h: Fix two typos. | |
4 | + | |
1 | 5 | 2020-03-06 Andrew Burgess <andrew.burgess@embecosm.com> |
2 | 6 | |
3 | 7 | * .dir-locals.el: New file. |
@@ -26,9 +26,9 @@ | ||
26 | 26 | namespace gdb { |
27 | 27 | |
28 | 28 | /* Implements a binary search using C++ iterators. |
29 | - This differs from std::binary_search in that it returns an interator for | |
29 | + This differs from std::binary_search in that it returns an iterator for | |
30 | 30 | the found element and in that the type of EL can be different from the |
31 | - type of the elements in the countainer. | |
31 | + type of the elements in the container. | |
32 | 32 | |
33 | 33 | COMP is a C-style comparison function with signature: |
34 | 34 | int comp(const value_type& a, const T& b); |