move the nl production to after the frame.


git-svn-id: https://svn.apache.org/repos/asf/activemq/stomp/trunk@830566 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/webgen/src/stomp10/specification.page b/webgen/src/stomp10/specification.page
index a98a7a7..acf9af0 100644
--- a/webgen/src/stomp10/specification.page
+++ b/webgen/src/stomp10/specification.page
@@ -219,12 +219,14 @@
     DIGIT               = <any US-ASCII digit "0".."9">
     NULL                = <octect 0>
 
-    frame               = *( LF )
-                          command LF
+    frame-stream        = 1*frame
+
+    frame               = command LF
                           *( header LF )
                           LF
                           [ content ]
                           NULL
+                          *( LF )
 
     command             = client-command | server-command