]> gitweb.factorcode.org Git - factor.git/blobdiff - extra/audio/vorbis/vorbis.factor
Fix comments to be ! not #!.
[factor.git] / extra / audio / vorbis / vorbis.factor
index d8036b4ee0fd980fa77e846c76f4a72bf8e1058a..b8ab44773b1552cb8460d1a7cb926c767b3c2fec 100644 (file)
@@ -40,8 +40,8 @@ ERROR: no-vorbis-in-ogg ;
     stream-buffer-size ; inline
 
 : read-bytes-into ( dest size stream -- len )
-    #! Read the given number of bytes from a stream
-    #! and store them in the destination byte array.
+    ! Read the given number of bytes from a stream
+    ! and store them in the destination byte array.
     stream-read >byte-array dup length [ memcpy ] keep  ;
 
 : stream-into-buffer ( buffer size vorbis-stream -- len )