Skip to content

Commit 923867c

Browse files
authored
docs: fix typo in Ipv4Addr and Ipv6Addr type names (PyO3#5098)
1 parent 28dc143 commit 923867c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

guide/src/conversions/tables.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ The table below contains the Python type and the corresponding function argument
3737
| `datetime.timedelta` | `Duration`, `chrono::Duration`[^5] | `PyDelta` |
3838
| `decimal.Decimal` | `rust_decimal::Decimal`[^7] | - |
3939
| `decimal.Decimal` | `bigdecimal::BigDecimal`[^9] | - |
40-
| `ipaddress.IPv4Address` | `std::net::IpAddr`, `std::net::IpV4Addr` | - |
41-
| `ipaddress.IPv6Address` | `std::net::IpAddr`, `std::net::IpV6Addr` | - |
40+
| `ipaddress.IPv4Address` | `std::net::IpAddr`, `std::net::Ipv4Addr` | - |
41+
| `ipaddress.IPv6Address` | `std::net::IpAddr`, `std::net::Ipv6Addr` | - |
4242
| `os.PathLike ` | `PathBuf`, `Path` | `PyString` |
4343
| `pathlib.Path` | `PathBuf`, `Path` | `PyString` |
4444
| `typing.Optional[T]` | `Option<T>` | - |

0 commit comments

Comments
 (0)