lib/hexapdf/content/parser.rb in hexapdf-0.32.2 vs lib/hexapdf/content/parser.rb in hexapdf-0.33.0

- old
+ new

@@ -44,17 +44,17 @@ # More efficient tokenizer for content streams. This tokenizer class works directly on a # string and not on an IO. # # Changes: # - # * Since a content stream is normally parsed front to back, a StopIteration error can be raised + # * Since a content stream is usually parsed front to back, a StopIteration error can be raised # instead of returning +NO_MORE_TOKENS+ once the end of the string is reached to avoid costly # checks in each iteration. If this behaviour is wanted, pass "raise_on_eos: true" in the # constructor. # # * Indirect object references are *not* supported by this tokenizer! # - # See: PDF1.7 s7.2 + # See: PDF2.0 s7.2 class Tokenizer < HexaPDF::Tokenizer #:nodoc: # The string that is tokenized. attr_reader :string