diff --git a/docs/source/glossary.rst b/docs/source/glossary.rst
index 6ac6193af5f17e003f5f84eba351c981e6824a2d..e8046503e115742777650c0ac5492d0ac9aee66e 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 bb8d7258fd54317e12966289d7473426d2192fff..2d72ff69bce4d3a77451b2099371ca7474c2cbb3 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