From 8e0bfa37cec8fafb9e976b058149572de573e7aa Mon Sep 17 00:00:00 2001 From: Sam Bristow Date: Mon, 25 Mar 2019 23:20:10 +1300 Subject: [PATCH] Fix documentation for IPvAny* schema mappings (#433) I think this was just a typo and these schemas support both IPv4 and IPv*6*. --- docs/schema_mapping.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/schema_mapping.py b/docs/schema_mapping.py index eee09dd..11ac526 100755 --- a/docs/schema_mapping.py +++ b/docs/schema_mapping.py @@ -245,21 +245,21 @@ table = [ 'string', '{"format": "ipvanyaddress"}', 'Pydantic standard "format" extension', - 'IPv4 or IPv4 address as used in ``ipaddress`` module', + 'IPv4 or IPv6 address as used in ``ipaddress`` module', ], [ 'IPvAnyInterface', 'string', '{"format": "ipvanyinterface"}', 'Pydantic standard "format" extension', - 'IPv4 or IPv4 interface as used in ``ipaddress`` module', + 'IPv4 or IPv6 interface as used in ``ipaddress`` module', ], [ 'IPvAnyNetwork', 'string', '{"format": "ipvanynetwork"}', 'Pydantic standard "format" extension', - 'IPv4 or IPv4 network as used in ``ipaddress`` module', + 'IPv4 or IPv6 network as used in ``ipaddress`` module', ], [ 'StrictStr',