We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
,
1 parent 4b5e053 commit da6a007Copy full SHA for da6a007
configmanager.go
@@ -12,7 +12,7 @@ import (
12
)
13
14
const (
15
- TERMINATING_CHAR string = `[^\'\"\s\n\\]`
+ TERMINATING_CHAR string = `[^\'\"\s\n\\\,]`
16
17
18
type ConfigManager struct{}
configmanager_test.go
@@ -119,7 +119,7 @@ key = "val1"
119
input: `
120
// TOML
121
[[somestuff]]
122
-key = FOO#/test
+key = FOO#/test,FOO#/test-FOO#/test
123
key2 = FOO#/test
124
key3 = FOO#/test
125
key4 = FOO#/test
@@ -128,7 +128,7 @@ key4 = FOO#/test
128
expect: `
129
130
131
-key = val1
+key = val1,val1-val1
132
key2 = val1
133
key3 = val1
134
key4 = val1
0 commit comments