Skip to content

Commit 48771de

Browse files
yotamofekdavidhewitt
authored andcommitted
Fix migration guide URL (#4711)
Original link was wrong
1 parent c0f756c commit 48771de

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/conversion.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ pub unsafe trait AsPyPointer {
6969
/// Conversion trait that allows various objects to be converted into `PyObject`.
7070
#[deprecated(
7171
since = "0.23.0",
72-
note = "`ToPyObject` is going to be replaced by `IntoPyObject`. See the migration guide (https://pyo3.rs/v0.23/migration) for more information."
72+
note = "`ToPyObject` is going to be replaced by `IntoPyObject`. See the migration guide (https://pyo3.rs/v0.23.0/migration) for more information."
7373
)]
7474
pub trait ToPyObject {
7575
/// Converts self into a Python object.
@@ -169,7 +169,7 @@ pub trait ToPyObject {
169169
)]
170170
#[deprecated(
171171
since = "0.23.0",
172-
note = "`IntoPy` is going to be replaced by `IntoPyObject`. See the migration guide (https://pyo3.rs/v0.23/migration) for more information."
172+
note = "`IntoPy` is going to be replaced by `IntoPyObject`. See the migration guide (https://pyo3.rs/v0.23.0/migration) for more information."
173173
)]
174174
pub trait IntoPy<T>: Sized {
175175
/// Performs the conversion.

0 commit comments

Comments
 (0)