Skip to content

Commit 26f7039

Browse files
committed
Remove strings from summary
1 parent d88ab2e commit 26f7039

2 files changed

Lines changed: 2 additions & 6 deletions

File tree

SUMMARY.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,4 @@
55
* [Numbers](numbers/README.md)
66
* [Creation](numbers/create.md)
77
* [Basic Operators](numbers/operators.md)
8-
* [Strings](strings/README.md)
9-
* [Creation](strings/create.md)
10-
* [Concatenation](strings/concat.md)
11-
* [Splitting](strings/split.md)
128

numbers/operators.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
# Operators
22

3-
You can apply operations to numbers using some basic operators like:
3+
You can apply mathematic operations to numbers using some basic operators like:
44

55
* **Addition**: ```c = a + b```
66
* **Subtraction**: ```c = a - b```
77
* **Multiplication**: ```c = a * b```
88
* **Division**: ```c = a / b```
99

10-
You can use parentheses just like in math to separate calcul execution.
10+
You can use parentheses just like in math to separate calcul execution: ```c = (a / b) + d```
1111

1212

1313
---

0 commit comments

Comments
 (0)