Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Strings in Ruby #555

Merged
2 changes: 1 addition & 1 deletion web/thesauruses/java/11/strings.json
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@
},
"split_at_newlines": {
"name": "Split string into a list of strings at every new line character",
"code": "List stringList = strings.split(\"\\\n\");"
"code": "List stringList = strings.split(\"\\n\");"
},
"split_at_substring": {
"name": "Split string by locating all substrings",
Expand Down
2 changes: 1 addition & 1 deletion web/thesauruses/java/15/strings.json
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@
},
"split_at_newlines": {
"name": "Split string into a list of strings at every new line character",
"code": "List stringList = strings.split(\"\\\n\");"
"code": "List stringList = strings.split(\"\\n\");"
},
"split_at_substring": {
"name": "Split string by locating all substrings",
Expand Down
2 changes: 1 addition & 1 deletion web/thesauruses/java/17/strings.json
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@
},
"split_at_newlines": {
"name": "Split string into a list of strings at every new line character",
"code": "List stringList = strings.split(\"\\\n\");"
"code": "List stringList = strings.split(\"\\n\");"
},
"split_at_substring": {
"name": "Split string by locating all substrings",
Expand Down
Loading