aboutsummaryrefslogtreecommitdiff
path: root/src/common/linux/stabs_reader.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/linux/stabs_reader.cc')
-rw-r--r--src/common/linux/stabs_reader.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/common/linux/stabs_reader.cc b/src/common/linux/stabs_reader.cc
index 01c8341c..23b6edbc 100644
--- a/src/common/linux/stabs_reader.cc
+++ b/src/common/linux/stabs_reader.cc
@@ -112,9 +112,9 @@ bool StabsReader::ProcessCompilationUnit() {
symbol_++;
// The STABS documentation says that some compilers may emit
- // additional N_SO units with names immediately following the first,
- // and that they should be ignored. However, the original Breakpad
- // STABS reader doesn't ignore them, so we won't either.
+ // additional N_SO entries with names immediately following the
+ // first, and that they should be ignored. However, the original
+ // Breakpad STABS reader doesn't ignore them, so we won't either.
// Process the body of the compilation unit, up to the next N_SO.
while (symbol_ < symbols_end_ && symbol_->n_type != N_SO) {