From ea1ebd0a7c5d65b038881bca4fc847420dee7536 Mon Sep 17 00:00:00 2001 From: Andrew Johnson Date: Mon, 19 May 2014 09:26:24 -0500 Subject: [PATCH] Fix some HTML character escapes. --- documentation/RELEASE_NOTES.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation/RELEASE_NOTES.html b/documentation/RELEASE_NOTES.html index e0d26ef01..d20d9bc65 100644 --- a/documentation/RELEASE_NOTES.html +++ b/documentation/RELEASE_NOTES.html @@ -483,7 +483,7 @@ Code that will not work with a version of Base before 3.15.0 can now be written like this to prevent it from compiling:

-#if defined(VERSION_INT) && EPICS_VERSION_INT < VERSION_INT(3,15,0,0)
+#if defined(VERSION_INT) && EPICS_VERSION_INT < VERSION_INT(3,15,0,0)
 #  error EPICS Base R3.15.0 or later is required
 #endif