Skip to content

Commit 5272ee1

Browse files
authored
Update README.md
Typo fixed
1 parent f01fae1 commit 5272ee1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ print(number)
3434
number = Complex(im=13.2, re=5) # --> Real = 5, Imaginary = 13.2
3535
print(number)
3636
# Instanciation 5
37-
number = Complex(re=3, im=-2.4, restore=False) # resotre argument is by default True, whenever an error occurs on operation, the last result will be restored to the object, else if it is False then the object will be simply None.
37+
number = Complex(re=3, im=-2.4, restore=False) # restore argument is by default True, whenever an error occurs on operation, the last result will be restored to the object, else if it is False then the object will be simply None.
3838
```
3939
### Basic operations
4040
```python

0 commit comments

Comments
 (0)