Grammar fix.
[ruby-eet.git] / lib / eet.rb
index 8a949845063a5baf1ef8e0c75fa3ec7b9741dcfa..69bd9b8a894757e6903bbb9b9f8715d0e03df71c 100644 (file)
@@ -1,5 +1,5 @@
 #--
-# $Id: eet.rb 34 2005-04-30 13:15:19Z tilman $
+# $Id: eet.rb 39 2005-05-18 18:54:31Z tilman $
 #
 # Copyright (c) 2005 Tilman Sauerbeck (tilman at code-monkey de)
 #
@@ -46,7 +46,7 @@ class Object
 
                props.each_pair do |tag, arg|
                        unless arg.is_a?(Array)
-                               raise(Eet::PropertyError, "hash value not an array")
+                               raise(Eet::PropertyError, "hash value is not an array")
                        end
 
                        value, type = arg
@@ -161,7 +161,7 @@ module Eet
        class PropertyError < EetError; end
        class ChunkError < EetError; end
 
-       class Stream < Array # :nodoc:
+       class Stream # :nodoc:
                def initialize(chunk = nil)
                        super(chunk.nil? ? 0 : 1, chunk)
                end