You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/src/built-in functions.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -49,7 +49,7 @@ Returns the tuple (x // y, x % y).
49
49
50
50
### exp(x)
51
51
52
-
-****Parameter****
52
+
-**Parameter**
53
53
- x : floating point number (f32, f64)
54
54
-**Returns** : floating point number (f32, f64) between [0.0, inf]
55
55
@@ -108,7 +108,7 @@ Returns the remainder of x / y, or x when x is smaller than y. Both x and y shou
108
108
109
109
-**Parameters**
110
110
- x : integer (i32, i64), floating point number (f32, f64), complex number (c32) or bool
111
-
- y: integer (i32, i64), floating point number (f32, f64) or bool
111
+
- y: integer (i32, i64), floating point number (f32, f64) or bool
112
112
-**Returns** : integer (i32), floating point number (f32, f64) or a complex number
113
113
114
114
Returns x<sup>y</sup>. When x is of type bool, y must also be of the same type. If x is 32-bit complex number (c32), y can only be a 32-bit integer (i32).
Copy file name to clipboardExpand all lines: doc/src/rebasing.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -100,7 +100,7 @@ pick 663edf45b refactor
100
100
# However, if you remove everything, the rebase will be aborted.
101
101
#
102
102
```
103
-
We want to squash commits named `refactor`(squash: meld commit with previous one), and we want to rename(`reword`) commit named `Added add4.py`, so will change `pick` option on our commits and type `squash or s`, `reword or r`
103
+
We want to squash commits named `refactor`(squash: meld the commit with the previous one), and we want to rename(`reword`) commit named `Added add4.py`, so will change `pick` option on our commits and type `squash or s`, `reword or r`
104
104
```bash
105
105
pick 132b89e0c Added add.py
106
106
pick 75556f15c Added add2.py
@@ -143,7 +143,7 @@ Refactor
143
143
# Untracked files:
144
144
...
145
145
```
146
-
- second window: rename(reword) `Added add4.py`, you can edit the message as you want, I will rename it: `Added add4.py and edit it ` .
146
+
- second window: rename(reword) `Added add4.py`, you can edit the message as you want, I will rename it to: `Added add4.py and edit it ` .
0 commit comments