diff options
Diffstat (limited to 'src/utils')
-rw-r--r-- | src/utils/hammer.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils/hammer.cc b/src/utils/hammer.cc index 1c7e050b..f4241aaf 100644 --- a/src/utils/hammer.cc +++ b/src/utils/hammer.cc @@ -69,7 +69,7 @@ namespace OpenAxiom { BasicText(const Byte* f, const Byte* l) : span(f, l) { } // Pointer to the start of this basic text element const Byte* begin() const { return span.first; } - // Oone-past-the-end of the this basic text element. + // One-past-the-end of the this basic text element. const Byte* end() const { return span.second; } private: std::pair<const Byte*, const Byte*> span; |