• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

GNU Binutils with patches for OS216


Commit MetaInfo

Revisióne63ee24f98f0648d1a88f9a74bd60a7278aeda2c (tree)
Tiempo2020-03-09 02:05:43
AutorTom Tromey <tom@trom...>
CommiterTom Tromey

Log Message

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.

Cambiar Resumen

Diferencia incremental

--- a/gdbsupport/ChangeLog
+++ b/gdbsupport/ChangeLog
@@ -1,3 +1,7 @@
1+2020-03-08 Tom Tromey <tom@tromey.com>
2+
3+ * gdb_binary_search.h: Fix two typos.
4+
15 2020-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
26
37 * .dir-locals.el: New file.
--- a/gdbsupport/gdb_binary_search.h
+++ b/gdbsupport/gdb_binary_search.h
@@ -26,9 +26,9 @@
2626 namespace gdb {
2727
2828 /* 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
3030 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.
3232
3333 COMP is a C-style comparison function with signature:
3434 int comp(const value_type& a, const T& b);