Skip to content

Commit 34c7a45

Browse files
authored
Merge pull request #326 from retsyo/patch-1
Update README.md
2 parents 6f65034 + 09fc46a commit 34c7a45

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -54,14 +54,14 @@ snippet should run equally well in `micropython`, or on a PC.
5454

5555
```python
5656
try:
57-
from ulab import numpy as np
58-
from ulab import scipy as spy
57+
from ulab import numpy
58+
from ulab import scipy
5959
except ImportError:
60-
import numpy as np
61-
import scipy as spy
60+
import numpy
61+
import scipy.special
6262

63-
x = np.array([1, 2, 3])
64-
spy.special.erf(x)
63+
x = numpy.array([1, 2, 3])
64+
scipy.special.erf(x)
6565
```
6666

6767
# Finding help

0 commit comments

Comments
 (0)