Skip to content

Commit 1f07d8a

Browse files
committed
Merge branch 'master' of https://github.com/gammasoft71/xtd
2 parents 8444137 + e974cf0 commit 1f07d8a

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

examples/xtd.core.examples/strings/split/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ xtdc run
1818
## Output
1919

2020
```
21-
strings.size = 5
21+
strings.length = 5
2222
One
2323
Two
2424
Three

examples/xtd.core.examples/strings/split/src/split.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33
auto main() -> int {
44
auto strings = string("One Two Three\tFour\nFive").split();
55

6-
console::write_line("strings.size = {}", strings.length());
6+
console::write_line("strings.length = {}", strings.length());
77
for (auto string : strings)
88
console::write_line(string);
99
}
1010

1111
// This code produces the following output :
1212
//
13-
// strings.size = 5
13+
// strings.length = 5
1414
// One
1515
// Two
1616
// Three

0 commit comments

Comments
 (0)