File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff 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 )
8686directory 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<()> {
146146We welcome [ issues] ( https://github.com/rust-numpy/rust-numpy/issues )
147147and [ 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 )
150150is a nice guide for starting.
151151Also, we have a [ gitter] ( https://gitter.im/PyO3/Lobby ) channel for communicating.
152152
Original file line number Diff line number Diff line change @@ -4,6 +4,6 @@ An example extension with [ndarray-linalg](https://github.com/rust-ndarray/ndarr
44
55Needs 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 )
88for introduction.
99
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments