From 666bfaabeff24c9517050b4de9fb9cda9e335eb0 Mon Sep 17 00:00:00 2001
From: Fanny Rodolakis <rodolakis@anl.gov>
Date: Thu, 25 May 2023 13:53:24 -0500
Subject: [PATCH] fix syntax

---
 2-IOC-deployment.md | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/2-IOC-deployment.md b/2-IOC-deployment.md
index e7fe2ef..14fc2aa 100644
--- a/2-IOC-deployment.md
+++ b/2-IOC-deployment.md
@@ -118,11 +118,11 @@ configure/CONFIG:18: *** EPICS_BASE must be set in a configure/RELEASE file.  St
 <details>
 <summary>what does this mean?</summary>
 
-This error message indicates that the EPICS_BASE environment variable is not defined in your configure/RELEASE file.
+This error message indicates that the `EPICS_BASE` environment variable is not defined in your **configure/RELEASE** file.
 
-EPICS_BASE is a mandatory environment variable that points to the location of the EPICS base installation directory. The configure/RELEASE file is used to define EPICS-related environment variables required for building an IOC.
+`EPICS_BASE` is a mandatory environment variable that points to the location of the EPICS base installation directory. The **configure/RELEASE** file is used to define EPICS-related environment variables required for building an IOC.
 
-Here's an example of how to set the EPICS_BASE variable in the configure/RELEASE file:
+Here's an example of how to set the `EPICS_BASE `variable in the **configure/RELEASE** file:
 
 ```
 EPICS_BASE=/path/to/epics/base
@@ -130,7 +130,7 @@ EPICS_BASE=/path/to/epics/base
 
 where "/path/to/epics/base" points to your EPICS base installation directory.
 
-Once you have set the EPICS_BASE variable in the configure/RELEASE file, try building your IOC again and the error should be resolved.
+Once you have set the `EPICS_BASE` variable in the **configure/RELEASE** file, try building your IOC again and the error should be resolved.
 </details>
 
 ### 2.5 Resolve build error #1
@@ -143,7 +143,7 @@ $ gedit configure/RELEASE &
 <details>
 <summary>solution</summary>
 
-EPICS_BASE doesn't need to be defined explicitly; The synApps configure/RELEASE file defines the version of base used to build it, so only the SUPPORT path needs to be corrected.
+`EPICS_BASE` doesn't need to be defined explicitly; the synApps configure/RELEASE file defines the version of base used to build it, so only the SUPPORT path needs to be corrected.
 
 ```diff
 $ git diff
@@ -206,7 +206,7 @@ make: *** [xxxApp.install] Error 2
 <details>
 <summary>what does this mean?</summary>
 
-This error message indicates that the linker (ld) is unable to find two libraries: net and pcap. When building your IOC (Input/Output Controller) using the make command, the linker is responsible for resolving and linking all the required libraries.
+This error message indicates that the linker (ld) is unable to find two libraries: net and pcap. When building your IOC using the make command, the linker is responsible for resolving and linking all the required libraries.
 The -l flag is used to specify libraries that need to be linked. In this case, the linker is looking for net and pcap. However, it is unable to locate these libraries, which results in the error.
 
 </details>
-- 
GitLab