Skip to content

Commit 44f1bb9

Browse files
committed
added new features and vs code extensions
1 parent 02f276c commit 44f1bb9

39 files changed

Lines changed: 11843 additions & 3261 deletions

docs/Var/string_like_methods.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ This page documents all user-facing string methods available on `var` objects ho
2626
| `isalnum()` | Is alphanumeric | `var("a1b2").isalnum() // true` |
2727
| `isspace()` | Is all whitespace | `var(" ").isspace() // true` |
2828
| `capitalize()` | Capitalize first letter | `var("abc").capitalize() // "Abc"` |
29-
| `sentence_case()` | Capitalize first letter, rest lower | `var("hELLO").sentence_case() // "Hello"` |
29+
| `sentence_case()` | Capitalize first letter, rest lower | `var("hELLO.worLd").sentence_case() // "Hello.World"` |
3030
| `title()` | Title case | `var("hi there").title() // "Hi There"` |
3131
| `count(substr)` | Count substring occurrences | `var("aaba").count("a") // 3` |
3232
| `reverse()` | Reverse string | `var("abc").reverse() // "cba"` |

include/pythonic/REPL/INTERNALS.md

Lines changed: 2008 additions & 318 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)