Fix parameter name for String.left and String.right

This commit is contained in:
Haoyu Qiu
2022-06-12 10:45:58 +08:00
parent d4235f51b1
commit 6f38c21253
4 changed files with 20 additions and 20 deletions

View File

@ -356,8 +356,8 @@ public:
int count(const String &p_string, int p_from = 0, int p_to = 0) const;
int countn(const String &p_string, int p_from = 0, int p_to = 0) const;
String left(int p_pos) const;
String right(int p_pos) const;
String left(int p_len) const;
String right(int p_len) const;
String indent(const String &p_prefix) const;
String dedent() const;
String strip_edges(bool left = true, bool right = true) const;