--- a/nquads/nquads-bnf.html	Tue Aug 27 18:32:36 2013 -0700
+++ b/nquads/nquads-bnf.html	Wed Aug 28 08:34:31 2013 -0700
@@ -30,11 +30,11 @@
     <td>::=</td>
     <td><a href='#grammar-production-IRIREF'>IRIREF</a> <code>| </code> <a href='#grammar-production-BLANK_NODE_LABEL'>BLANK_NODE_LABEL</a> <code>| </code> <a href='#grammar-production-literal'>literal</a></td>
 </tr>
-            <tr id="grammar-production-graphLabel" data-grammar-original="[6]  graphLabel         ::= IRIREF" data-grammar-expression="('id', 'IRIREF')" >
+            <tr id="grammar-production-graphLabel" data-grammar-original="[6]  graphLabel         ::= IRIREF | BLANK_NODE_LABEL" data-grammar-expression="('|', [('id', 'IRIREF'), ('id', 'BLANK_NODE_LABEL')])" >
     <td>[6]</td>
     <td><code>graphLabel</code></td>
     <td>::=</td>
-    <td><a href='#grammar-production-IRIREF'>IRIREF</a></td>
+    <td><a href='#grammar-production-IRIREF'>IRIREF</a> <code>| </code> <a href='#grammar-production-BLANK_NODE_LABEL'>BLANK_NODE_LABEL</a></td>
 </tr>
             <tr id="grammar-production-literal" data-grammar-original="[7]  literal            ::= STRING_LITERAL_QUOTE ('^^' IRIREF | ('@' LANG) )?" data-grammar-expression="(',', [('id', 'STRING_LITERAL_QUOTE'), ('?', ('|', [(',', [("'", '^^'), ('id', 'IRIREF')]), (',', [("'", '@'), ('id', 'LANG')])]))])" >
     <td>[7]</td>
--- a/nquads/nquads.bnf	Tue Aug 27 18:32:36 2013 -0700
+++ b/nquads/nquads.bnf	Wed Aug 28 08:34:31 2013 -0700
@@ -3,7 +3,7 @@
 [3]  subject            ::= IRIREF | BLANK_NODE_LABEL
 [4]  predicate          ::= IRIREF 
 [5]  object             ::= IRIREF | BLANK_NODE_LABEL | literal
-[6]  graphLabel         ::= IRIREF
+[6]  graphLabel         ::= IRIREF | BLANK_NODE_LABEL
 [7]  literal            ::= STRING_LITERAL_QUOTE ('^^' IRIREF | ('@' LANG) )?
 
 @terminals