Skip to content

Commit

Permalink
Fix migration guide URL (#4711)
Browse files Browse the repository at this point in the history
Original link was wrong
  • Loading branch information
yotamofek authored and davidhewitt committed Nov 16, 2024
1 parent c0f756c commit 48771de
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/conversion.rs
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ pub unsafe trait AsPyPointer {
/// Conversion trait that allows various objects to be converted into `PyObject`.
#[deprecated(
since = "0.23.0",
note = "`ToPyObject` is going to be replaced by `IntoPyObject`. See the migration guide (https://pyo3.rs/v0.23/migration) for more information."
note = "`ToPyObject` is going to be replaced by `IntoPyObject`. See the migration guide (https://pyo3.rs/v0.23.0/migration) for more information."
)]
pub trait ToPyObject {
/// Converts self into a Python object.
Expand Down Expand Up @@ -169,7 +169,7 @@ pub trait ToPyObject {
)]
#[deprecated(
since = "0.23.0",
note = "`IntoPy` is going to be replaced by `IntoPyObject`. See the migration guide (https://pyo3.rs/v0.23/migration) for more information."
note = "`IntoPy` is going to be replaced by `IntoPyObject`. See the migration guide (https://pyo3.rs/v0.23.0/migration) for more information."
)]
pub trait IntoPy<T>: Sized {
/// Performs the conversion.
Expand Down

0 comments on commit 48771de

Please sign in to comment.