From ae40e0e8f8064e35522b21474fb170a505be77ea Mon Sep 17 00:00:00 2001 From: Asher Gomez Date: Wed, 3 Jan 2024 15:34:16 +1100 Subject: [PATCH 1/2] fix(toml): testdata typo --- toml/testdata/string.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/toml/testdata/string.toml b/toml/testdata/string.toml index ecca0b706ccd..d5d84afe4822 100644 --- a/toml/testdata/string.toml +++ b/toml/testdata/string.toml @@ -27,7 +27,7 @@ str8 = "Roses are red\fViolets are blue" str9 = "Roses are red\bViolets are blue" str10 = "Roses are red\\Violets are blue" str11 = """ -dobule "quote" +double "quote" single 'quote' """ str12 = """Here are two quotation marks: "". Simple enough.""" From dd9fe0e2f6d6c0a1f75f6335a8271b2b80c8cffe Mon Sep 17 00:00:00 2001 From: Asher Gomez Date: Wed, 3 Jan 2024 15:37:46 +1100 Subject: [PATCH 2/2] fix: test --- toml/test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/toml/test.ts b/toml/test.ts index ee3808664418..d910444029bf 100644 --- a/toml/test.ts +++ b/toml/test.ts @@ -30,7 +30,7 @@ Deno.test({ str8: "Roses are red\fViolets are blue", str9: "Roses are red\bViolets are blue", str10: "Roses are red\\Violets are blue", - str11: `dobule "quote"\nsingle 'quote'\n`, + str11: `double "quote"\nsingle 'quote'\n`, str12: 'Here are two quotation marks: "". Simple enough.', str13: 'Here are three quotation marks: """.', str14: 'Here are fifteen quotation marks: """"""""""""""".',