Skip to content

Commit

Permalink
Merge pull request #1956 from PyO3/complex-doc-fix
Browse files Browse the repository at this point in the history
complex: fix a rustdoc warning and fix crate name
  • Loading branch information
davidhewitt committed Oct 30, 2021
2 parents 833f365 + 2c00866 commit 615876d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/types/complex.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ use std::os::raw::c_double;
/// Represents a Python [`complex`](https://docs.python.org/3/library/functions.html#complex) object.
///
/// Note that `PyComplex` supports only basic operations. For advanced operations
/// consider using [num-bigint](https://docs.rs/num-bigint)'s [`Complex`] type instead.
/// This requires the [`num-complex`](crate::num_complex) feature flag.
/// consider using [num-complex](https://docs.rs/num-complex)'s [`Complex`] type instead.
/// This optional dependency can be activated with the `num-complex` feature flag.
///
/// [`Complex`]: https://docs.rs/num-complex/latest/num_complex/struct.Complex.html
#[repr(transparent)]
Expand Down

0 comments on commit 615876d

Please sign in to comment.