diff options
author | dos-reis <gdr@axiomatics.org> | 2013-06-26 11:43:56 +0000 |
---|---|---|
committer | dos-reis <gdr@axiomatics.org> | 2013-06-26 11:43:56 +0000 |
commit | 7f57a915cee3c91cddd166fe9964655696666c4b (patch) | |
tree | d00aa4323f8dc4280e736c5e15ee8479f89eb31b /src/utils | |
parent | f9e4a03a220766099d6b5fc683a58185c4805a05 (diff) | |
download | open-axiom-7f57a915cee3c91cddd166fe9964655696666c4b.tar.gz |
Rewrite s-expression reader.
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; |