From 5f3c12bbca7da599312b1e0008cc217c4f315425 Mon Sep 17 00:00:00 2001
From: Karel van Klink <karel.vanklink@geant.org>
Date: Mon, 9 Sep 2024 13:54:16 +0200
Subject: [PATCH] Update docstring in edgeport

---
 docs/source/glossary.rst                 | 3 +++
 gso/products/product_blocks/edge_port.py | 4 ++--
 2 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/docs/source/glossary.rst b/docs/source/glossary.rst
index 6ac6193a..e8046503 100644
--- a/docs/source/glossary.rst
+++ b/docs/source/glossary.rst
@@ -54,6 +54,9 @@ Glossary of terms
   JSON
     JavaScript Object Notation
 
+  LACP
+    Link Aggregation Control Protocol
+
   LAG
     Link Aggregation: a bundle of multiple network connections.
 
diff --git a/gso/products/product_blocks/edge_port.py b/gso/products/product_blocks/edge_port.py
index bb8d7258..2d72ff69 100644
--- a/gso/products/product_blocks/edge_port.py
+++ b/gso/products/product_blocks/edge_port.py
@@ -112,11 +112,11 @@ class EdgePortBlock(EdgePortBlockProvisioning, lifecycle=[SubscriptionLifecycle.
 
     #: The router that this edge port is connected to.
     edge_port_node: RouterBlock
-    #: The name of the edge port, in our case, corresponds to the name of the LAG interface.
+    #: The name of the edge port, in our case, corresponds to the name of the :term:`LAG` interface.
     edge_port_name: str
     #: A description of the edge port.
     edge_port_description: str | None = None
-    #: Indicates whether LACP (Link Aggregation Control Protocol) is enabled for this edge port.
+    #: Indicates whether :term:`LACP` is enabled for this edge port.
     edge_port_enable_lacp: bool
     #: The type of encapsulation used on this edge port, by default DOT1Q.
     edge_port_encapsulation: EncapsulationType = EncapsulationType.DOT1Q
-- 
GitLab