From af62e57bbff35732b950c7411b34ed36f7e50e57 Mon Sep 17 00:00:00 2001
From: Alejandro Lopez Gestoso <alopez@iri.upc.edu>
Date: Wed, 28 Aug 2019 10:38:20 +0200
Subject: [PATCH] Fixed a typo

---
 ReadMe.md | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/ReadMe.md b/ReadMe.md
index 9b9e8fc..b01c63e 100644
--- a/ReadMe.md
+++ b/ReadMe.md
@@ -110,15 +110,15 @@ To generate the documentation execute the following command:
 
 To use this library in an other library or application, in the CMakeLists.txt file, first it is necessary to locate if the library has been installed or not using the following command
 
-``` FIND_PACKAGE(asterx1\_gps) ```
+``` FIND_PACKAGE(asterx1_gps) ```
 
 In the case that the package is present, it is necessary to add the header files directory to the include directory path by using
 
-``` INCLUDE_DIRECTORIES(${asterx1\_gps\_INCLUDE\_DIRS}) ```
+``` INCLUDE_DIRECTORIES(${asterx1_gps_INCLUDE_DIRS}) ```
 
 and it is also necessary to link with the desired libraries by using the following command
 
-``` TARGET_LINK_LIBRARIES(<executable name> ${asterx1\_gps\_LIBRARIES}) ```
+``` TARGET_LINK_LIBRARIES(<executable name> ${asterx1_gps_LIBRARIES}) ```
 
 ## Examples
 
-- 
GitLab