Skip to content

Commit a787067

Browse files
committed
Address feedback
1 parent 7911a0c commit a787067

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ pyo3 = { version = "0.15", default-features = false }
2424
pyo3 = { version = "0.15", features = ["auto-initialize"] }
2525

2626
[features]
27-
# In default setting, Python version is automatically detected
2827
default = []
2928
rayon = ["ndarray/rayon"]
3029

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Rust bindings for the NumPy C-API.
1818
- Python 3.5 support is dropped from 0.13
1919
- Some Rust libraries
2020
- [ndarray](https://github.com/rust-ndarray/ndarray) for Rust-side matrix library
21-
- [PyO3](https://github.com/PyO3/pyo3) for CPython bindings
21+
- [PyO3](https://github.com/PyO3/pyo3) for Python bindings
2222
- And more (see [Cargo.toml](Cargo.toml))
2323
- [numpy](https://numpy.org/) installed in your Python environments (e.g., via `pip install numpy`)
2424
- We recommend `numpy >= 1.16.0`, though older versions may work
@@ -167,7 +167,7 @@ fn rust_ext(_py: Python<'_>, m: &PyModule) -> PyResult<()> {
167167
}
168168
```
169169

170-
## Conributing
170+
## Contributing
171171
We welcome [issues](https://github.com/PyO3/rust-numpy/issues)
172172
and [pull requests](https://github.com/PyO3/rust-numpy/pulls).
173173

0 commit comments

Comments
 (0)