From 4f50e52a2baab94aa4095877abaee15b1ada2227 Mon Sep 17 00:00:00 2001 From: Neda Moeini <neda.moeini@geant.org> Date: Thu, 18 Apr 2024 10:02:45 +0200 Subject: [PATCH] Fixed documentation issues. --- docs/source/glossary.rst | 3 +++ gso/products/product_blocks/pop_vlan.py | 6 +++--- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/docs/source/glossary.rst b/docs/source/glossary.rst index 4844b804..4dc66b8e 100644 --- a/docs/source/glossary.rst +++ b/docs/source/glossary.rst @@ -81,3 +81,6 @@ Glossary of terms WFO `Workflow Orchestrator <https://workfloworchestrator.org/>`_ + + LAN + Local Area Network diff --git a/gso/products/product_blocks/pop_vlan.py b/gso/products/product_blocks/pop_vlan.py index 196158c1..4935c2f6 100644 --- a/gso/products/product_blocks/pop_vlan.py +++ b/gso/products/product_blocks/pop_vlan.py @@ -89,13 +89,13 @@ class PopVlanBlock(PopVlanBlockProvisioning, lifecycle=[SubscriptionLifecycle.AC vlan_id: int #: The description of the Pop VLAN. pop_vlan_description: str - #: The Lan Switch Interconnect that this Pop VLAN is connected to. + #: The LAN Switch Interconnect that this Pop VLAN is connected to. lan_switch_interconnect: LanSwitchInterconnectBlock #: The ports of the Pop VLAN. ports: PortList[PopVlanPortBlock] #: The level of the layer preference for the Pop VLAN (L2 or L3). layer_preference: LayerPreference - #: IPv4 network for the Pop VLAN if layer_preference is L3. + #: IPv4 network for the Pop VLAN if layer preference is L3. ipv4_network: IPv4Network | None = None - #: IPv6 network for the Pop VLAN if layer_preference is L3. + #: IPv6 network for the Pop VLAN if layer preference is L3. ipv6_network: IPv6Network | None = None -- GitLab