]> andersk Git - libyaml.git/commitdiff
Fix token name typos in comments
authorViktor Szakats <commit@vszakats.net>
Thu, 28 Jun 2018 16:02:54 +0000 (16:02 +0000)
committerIngy döt Net <ingy@ingy.net>
Sat, 30 Jun 2018 21:47:25 +0000 (14:47 -0700)
include/yaml.h
src/scanner.c

index a9fb573c696c8bf418c0f0648cab6f8a6c4f860d..97f655a0216bf2f668e9ea140eb52637bfa3815c 100644 (file)
@@ -232,7 +232,7 @@ typedef enum yaml_token_type_e {
 
     /** A BLOCK-SEQUENCE-START token. */
     YAML_BLOCK_SEQUENCE_START_TOKEN,
-    /** A BLOCK-SEQUENCE-END token. */
+    /** A BLOCK-MAPPING-START token. */
     YAML_BLOCK_MAPPING_START_TOKEN,
     /** A BLOCK-END token. */
     YAML_BLOCK_END_TOKEN,
index b6f5185f4336499e2929864f135bce859626f5d3..1ff262f164ed9ca8c0e48dfb2c57718af87be853 100644 (file)
@@ -38,8 +38,8 @@
  *      BLOCK-END                       # Indentation decrease.
  *      FLOW-SEQUENCE-START             # '['
  *      FLOW-SEQUENCE-END               # ']'
- *      BLOCK-SEQUENCE-START            # '{'
- *      BLOCK-SEQUENCE-END              # '}'
+ *      FLOW-MAPPING-START              # '{'
+ *      FLOW-MAPPING-END                # '}'
  *      BLOCK-ENTRY                     # '-'
  *      FLOW-ENTRY                      # ','
  *      KEY                             # '?' or nothing (simple keys).
This page took 0.154604 seconds and 5 git commands to generate.