Skip to content

Commit 8a6667b

Browse files
committed
main: tweaks from rename
1 parent 7194f44 commit 8a6667b

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,9 +82,9 @@ fn main() -> PyResult<()> {
8282

8383
### Write a Python module in Rust
8484

85-
Please see [simple-extension](https://github.com/PyO3/rust-numpy/tree/master/examples/simple-extension)
85+
Please see [simple-extension](https://github.com/PyO3/rust-numpy/tree/main/examples/simple-extension)
8686
directory for the complete example.
87-
Also, we have an example project with [ndarray-linalg](https://github.com/PyO3/rust-numpy/tree/master/examples/linalg).
87+
Also, we have an example project with [ndarray-linalg](https://github.com/PyO3/rust-numpy/tree/main/examples/linalg).
8888

8989
```toml
9090
[lib]
@@ -146,7 +146,7 @@ fn rust_ext(_py: Python<'_>, m: &PyModule) -> PyResult<()> {
146146
We welcome [issues](https://github.com/rust-numpy/rust-numpy/issues)
147147
and [pull requests](https://github.com/rust-numpy/rust-numpy/pulls).
148148

149-
PyO3's [contrinbuting.md](https://github.com/PyO3/pyo3/blob/master/Contributing.md)
149+
PyO3's [contrinbuting.md](https://github.com/PyO3/pyo3/blob/main/Contributing.md)
150150
is a nice guide for starting.
151151
Also, we have a [gitter](https://gitter.im/PyO3/Lobby) channel for communicating.
152152

examples/linalg/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ An example extension with [ndarray-linalg](https://github.com/rust-ndarray/ndarr
44

55
Needs a fortran compiler (e.g., `gfortran`) for building.
66

7-
See [simple-extension's README](https://github.com/PyO3/rust-numpy/blob/master/examples/simple-extension/README.md)
7+
See [simple-extension's README](https://github.com/PyO3/rust-numpy/blob/main/examples/simple-extension/README.md)
88
for introduction.
99

src/array.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ use crate::slice_box::SliceBox;
3939
/// Like [`new`](#method.new), all constractor methods of `PyArray` returns `&PyArray`.
4040
///
4141
/// This design follows
42-
/// [pyo3's ownership concept](https://pyo3.rs/master/doc/pyo3/index.html#ownership-and-lifetimes).
42+
/// [pyo3's ownership concept](https://pyo3.rs/main/doc/pyo3/index.html#ownership-and-lifetimes).
4343
///
4444
///
4545
/// # Data type and Dimension

0 commit comments

Comments
 (0)