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<()> {
82
82
83
83
### Write a Python module in Rust
84
84
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 )
86
86
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 ) .
88
88
89
89
``` toml
90
90
[lib ]
@@ -146,7 +146,7 @@ fn rust_ext(_py: Python<'_>, m: &PyModule) -> PyResult<()> {
146
146
We welcome [ issues] ( https://github.com/rust-numpy/rust-numpy/issues )
147
147
and [ pull requests] ( https://github.com/rust-numpy/rust-numpy/pulls ) .
148
148
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 )
150
150
is a nice guide for starting.
151
151
Also, we have a [ gitter] ( https://gitter.im/PyO3/Lobby ) channel for communicating.
152
152
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
4
4
5
5
Needs a fortran compiler (e.g., ` gfortran ` ) for building.
6
6
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 )
8
8
for introduction.
9
9
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ use crate::slice_box::SliceBox;
39
39
/// Like [`new`](#method.new), all constractor methods of `PyArray` returns `&PyArray`.
40
40
///
41
41
/// 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).
43
43
///
44
44
///
45
45
/// # Data type and Dimension
You can’t perform that action at this time.
0 commit comments