Skip to content

Commit 68cba4e

Browse files
committed
Rename spec-1.2.* to yaml-spec-1.2.*
1 parent fd9c994 commit 68cba4e

File tree

9 files changed

+8
-8
lines changed

9 files changed

+8
-8
lines changed

Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ SHELL := bash
33
CWD := $(shell pwd)
44

55
SPEC12_URL := https://yaml.org/spec/1.2/spec.html
6-
SPEC12_TXT := spec-1.2.txt
7-
SPEC12_YAML := spec-1.2.yaml
8-
SPEC12_JSON := spec-1.2.json
9-
SPEC12_COMMENTS := spec-1.2-comments.yaml
6+
SPEC12_TXT := yaml-spec-1.2.txt
7+
SPEC12_YAML := yaml-spec-1.2.yaml
8+
SPEC12_JSON := yaml-spec-1.2.json
9+
SPEC12_COMMENTS := yaml-spec-1.2-comments.yaml
1010
SPEC12_DSL_YAML := $(SPEC12_YAML:%.yaml=%.dsl.yaml)
1111
SPEC12_PCRE_YAML := $(SPEC12_YAML:%.yaml=%.pcre.yaml)
1212
SPEC12_PERL_YAML := $(SPEC12_YAML:%.yaml=%.perl.yaml)

ReadMe.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
yaml-grammar
22
============
33

4-
[The YAML 1.2 Specification's Grammar Productions as YAML](https://github.com/yaml/yaml-grammar/blob/spec/spec-1.2.yaml).
4+
[The YAML 1.2 Specification's Grammar Productions as YAML](https://github.com/yaml/yaml-grammar/blob/spec/yaml-spec-1.2.yaml).
55

66
# Overview
77

parser/ReadMe.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Here we generate 100% compliant parsers, in multiple programming languages, from
1515
It works like this:
1616

1717
* Start with the grammar productions in the online [YAML 1.2 Spec](https://yaml.org/spec/1.2/spec.html#id2770814)
18-
* Convert that into a [YAML 1.2 Spec as YAML](https://github.com/yaml/yaml-grammar/blob/master/spec-1.2.yaml)
18+
* Convert that into a [YAML 1.2 Spec as YAML](https://github.com/yaml/yaml-grammar/blob/master/yaml-spec-1.2.yaml)
1919
* Convert this into a machine generated parser module in every programming language:
2020
* CoffeeScript
2121
* [Grammar class/module](https://github.com/yaml/yaml-grammar/blob/master/parser/lib/grammar.coffee)

parser/common.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ SHELL := bash
33
ROOT := $(shell cd ../..; pwd)
44
GENERATOR := $(ROOT)/parser/bin/generate-yaml-grammar
55
GENERATOR_LIB := $(ROOT)/parser/lib/generate-yaml-grammar-$(LANG).coffee
6-
YAML_SPEC_YAML := $(ROOT)/spec-1.2.yaml
6+
YAML_SPEC_YAML := $(ROOT)/yaml-spec-1.2.yaml
77

88
export PATH := $(ROOT)/parser/testml/bin:$(PATH)
99

parser/javascript/lib/grammar.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)