Skip to content

Commit def22a8

Browse files
authored
Update examples in README for string_t usage
1 parent b4993c7 commit def22a8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ Example expression | Result
9191
`string_t(["a", "b", "c"])` | `[string_t("a"), string_t("b"), string_t("c")]`
9292
`.cat. string_t([9,8,7])` | `string_t("987")`
9393
`.csv. string_t([1.5,2.0,3.25])` | `string_t("1.50000000,2.00000000,3.25000000")`
94-
`"-" .separatedBy. string_t([1,2,4])` | `string_t("1-2-4")`
94+
`string_t([1,2,4]) .separatedBy. "-"` | `string_t("1-2-4")`
9595
`string_t("ab") // string_t("cd")` | `string_t("abcd")`
9696
`"ab" // string_t("cd")` | `string_t("abcd")`
9797
`string_t("ab") // "cd"` | `string_t("abcd")`

0 commit comments

Comments
 (0)