* src/abg-comp-filter.cc (has_harmless_name_change): Fix comment.
* src/abg-ir.cc (var_decl::get_qualified_name): Likewise.
Signed-off-by: Dodji Seketeli <dodji@redhat.com>
&& is_typedef(s)
&& (is_typedef(f)->get_underlying_type()
== is_typedef(s)->get_underlying_type()))
- // .. or a data member name change, without having the
- // its type changed ...
+ // .. or a data member name change, without having its
+ // type changed ...
|| (is_data_member(f)
&& is_data_member(s)
&& (is_var_decl(f)->get_type()
/// data member, then the qualified name is actually the flat
/// representation (the definition) of the type of the anonymous data
/// member. We chose the flat representation because otherwise, the
-/// name an *anonymous* data member is empty, by construction, e.g:
+/// name of an *anonymous* data member is empty, by construction, e.g:
///
/// struct foo {
/// int a;