diff --git a/doc/E1-design.md b/doc/E1-design.md
index e80c431029274638596486896190dd307cd0df5e..6939e3867e3d0d722b712ace237f51f24152d530 100644
--- a/doc/E1-design.md
+++ b/doc/E1-design.md
@@ -79,7 +79,7 @@ sequenceDiagram
 
 # 2. Running the E1 Split
 
-The setup is assuming that all modules are running on the same machine. The user can refer to the [F1 design document](https://gitlab.eurecom.fr/oai/openairinterface5g/-/blob/develop/doc/F1-design.md) for the mutual configuration of DU and the E1 CUCP-CUUP split.
+The setup is assuming that all modules are running on the same machine. The user can refer to the [F1 design document](./F1-design.md) for local deployment of the DU.
 
 ## 2.1 Configuration File
 
@@ -113,7 +113,7 @@ E1_INTERFACE =
 )
 ```
 
-For CUUP, it is
+For CUUP, it is:
 ```
 E1_INTERFACE =
 (
diff --git a/openair2/GNB_APP/gnb_app.c b/openair2/GNB_APP/gnb_app.c
index 081508958b73341ce24d1b087fcd00c691f3fa6f..39946c95f1cfed051f9fed38e8441144011da149 100644
--- a/openair2/GNB_APP/gnb_app.c
+++ b/openair2/GNB_APP/gnb_app.c
@@ -148,7 +148,7 @@ void *gNB_app_task(void *args_p)
         AssertFatal(false, "Create task for E1AP CP failed\n");
       E1_t e1type = CPtype;
       MessageDef *msg = RCconfig_NR_CU_E1(&e1type);
-      AssertFatal(msg != NULL, "Send itti to task for E1AP CP failed\n");
+      AssertFatal(msg != NULL, "Send ITTI to task for E1AP CP failed\n");
       // this sends the E1AP_REGISTER_REQ to CU-CP so it sets up the socket
       // it does NOT use the E1AP part
       itti_send_msg_to_task(TASK_CUCP_E1, 0, msg);