Browse Source

Remove duplicate word "the" (#327)

Remove duplicate word "the"
hujikobunimo 7 years ago
parent
commit
5d620af190
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      internal/elfexec/elfexec.go

+ 1
- 1
internal/elfexec/elfexec.go View File

218
 			// So the base should be:
218
 			// So the base should be:
219
 			if stextOffset != nil && (start%pageSize) == (*stextOffset%pageSize) {
219
 			if stextOffset != nil && (start%pageSize) == (*stextOffset%pageSize) {
220
 				// perf uses the address of _stext as start. Some tools may
220
 				// perf uses the address of _stext as start. Some tools may
221
-				// adjust for this before calling GetBase, in which case the the page
221
+				// adjust for this before calling GetBase, in which case the page
222
 				// alignment should be different from that of stextOffset.
222
 				// alignment should be different from that of stextOffset.
223
 				return start - *stextOffset, nil
223
 				return start - *stextOffset, nil
224
 			}
224
 			}