Skip to content

Commit 21ca5fa

Browse files
committed
Align column
1 parent 7bb6840 commit 21ca5fa

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/clj_toml/core.clj

+5-5
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171
7272
basic-string = <quotation-mark> *basic-char <quotation-mark>
7373
74-
quotation-mark = %x22 ; \"
74+
quotation-mark = %x22 ; \"
7575
7676
<basic-char> = basic-unescaped / escaped
7777
<basic-unescaped> = %x20-21 / %x23-5B / %x5D-7E / %x80-10FFFF
@@ -87,8 +87,8 @@
8787
<escape-seq-char> =/ %x6E ; n line feed U+000A
8888
<escape-seq-char> =/ %x72 ; r carriage return U+000D
8989
<escape-seq-char> =/ %x74 ; t tab U+0009
90-
<escape-seq-char> =/ %x75 4HEXDIG ; uXXXX U+XXXX
91-
<escape-seq-char> =/ %x55 8HEXDIG ; UXXXXXXXX U+XXXXXXXX
90+
<escape-seq-char> =/ %x75 4HEXDIG ; uXXXX U+XXXX
91+
<escape-seq-char> =/ %x55 8HEXDIG ; UXXXXXXXX U+XXXXXXXX
9292
9393
;; Multiline literals
9494
@@ -268,10 +268,10 @@
268268
(condp = x
269269
"-inf" Double/NEGATIVE_INFINITY
270270
"+inf" Double/POSITIVE_INFINITY
271-
"inf" Double/POSITIVE_INFINITY
271+
"inf" Double/POSITIVE_INFINITY
272272
"-nan" Double/NaN
273273
"+nan" Double/NaN
274-
"nan" Double/NaN
274+
"nan" Double/NaN
275275
(read-string x)))
276276

277277
(def toml-transform

0 commit comments

Comments
 (0)