]> sourceware.org Git - libabigail.git/commitdiff
Eliminate non-ASCII characters.
authorGiuliano Procida <gprocida@google.com>
Fri, 12 Jun 2020 10:17:01 +0000 (11:17 +0100)
committerDodji Seketeli <dodji@redhat.com>
Mon, 15 Jun 2020 08:56:44 +0000 (10:56 +0200)
There are few non-ASCII characters in various code comments. A few are
typos and the rest have obvious ASCII equivalents. This commit
replaces them all with ASCII characters.

* include/abg-diff-utils.h: Replace "’’" with "'".
* src/abg-elf-helpers.cc: Replace "⋅" with ".".
* src/abg-ini.cc: Replace "@êef" with "@ref".
* src/abg-ir.cc: Ditto.
* src/abg-tools-utils.cc: Replace "–" with "-".

Signed-off-by: Giuliano Procida <gprocida@google.com>
include/abg-diff-utils.h
src/abg-elf-helpers.cc
src/abg-ini.cc
src/abg-ir.cc
src/abg-tools-utils.cc

index 8bc667d0d3382e1320e76e22c82edc839c818689..b59ffa04fd297e8a55a8368c1df22d5e7609fff0 100644 (file)
@@ -1122,7 +1122,7 @@ is_match_point(RandomAccessOutputIterator a_begin,
 /// section 4b in the paper.  As the paper says, "The idea for doing
 /// so is to simultaneously run the basic algorithm in both the
 /// forward and reverse directions until furthest reaching forward and
-/// reverse paths starting at opposing corners ‘‘overlap’’."
+/// reverse paths starting at opposing corners 'overlap'."
 ///
 /// @tparm RandomAccessOutputIterator the type of iterators passed to
 /// this function.  It must be a random access output iterator kind.
index 02ecbcf250ed5457b6d3f24b4d3e0bf4d158c541..ed768d221d4f9ea16862d6f72914cf5f78485959 100644 (file)
@@ -895,7 +895,7 @@ is_linux_kernel(Elf *elf_handle)
          || is_linux_kernel_module(elf_handle));
 }
 
-/// Get the address at which a given binary is loaded in memory
+/// Get the address at which a given binary is loaded in memory.
 ///
 /// @param elf_handle the elf handle for the binary to consider.
 ///
index 1e5c11f3912ef2e582911497fb809fa49e1f07bf..5dc438b4c273b5a0d9912eb9ae9ae1e953193144 100644 (file)
@@ -267,14 +267,14 @@ struct property_value::priv
 
 /// Default constructor for the @ref property_value type.
 ///
-/// @param kind the of @êef property_value that is being constructed.
+/// @param kind the of @ref property_value that is being constructed.
 property_value::property_value()
   : priv_(new priv(ABSTRACT_PROPERTY_VALUE))
 {}
 
 /// Constructor for the @ref property_value type.
 ///
-/// @param kind the of @êef property_value that is being constructed.
+/// @param kind the of @ref property_value that is being constructed.
 property_value::property_value(value_kind kind)
   : priv_(new priv(kind))
 {}
index 5cc39f59400a617fee384abb51a1cd489e17c749..5e2506a22d835dcc4c3dcd4dfbdc7b955fd5a233 100644 (file)
@@ -12504,9 +12504,9 @@ integral_type::base_type
 integral_type::get_base_type() const
 {return base_;}
 
-/// Getter of the modifiers bitmap of the @êef integral_type.
+/// Getter of the modifiers bitmap of the @ref integral_type.
 ///
-/// @return the modifiers bitmap of the @êef integral_type.
+/// @return the modifiers bitmap of the @ref integral_type.
 integral_type::modifiers_type
 integral_type::get_modifiers() const
 {return modifiers_;}
index 11486a212b84a4a55c2030ad3e3a00d975d63339..dfbec879de8d658d7e4df36ac71905e6fa41f1d3 100644 (file)
@@ -869,7 +869,7 @@ string_is_ascii(const string& str)
 ///
 /// "if the hexadecimal value for a universal-character-name [...]  or
 ///  string literal corresponds to a control character (in either of
-///  the ranges 0x00–0x1F or 0x7F–0x9F, both inclusive) [...] the
+///  the ranges 0x00-0x1F or 0x7F-0x9F, both inclusive) [...] the
 ///  program is ill-formed."
 ///
 /// @param str the string to consider.
This page took 0.101347 seconds and 5 git commands to generate.