From 00549c832a9bd941b8a6d6e127dcbe1946b73c47 Mon Sep 17 00:00:00 2001 From: Andrew Johnson Date: Fri, 17 Feb 2017 14:16:57 -0600 Subject: [PATCH] Fix HTML entities --- documentation/RELEASE_NOTES.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/documentation/RELEASE_NOTES.html b/documentation/RELEASE_NOTES.html index 3b0189205..17b5946c6 100644 --- a/documentation/RELEASE_NOTES.html +++ b/documentation/RELEASE_NOTES.html @@ -69,13 +69,13 @@ successfully initialized from the link.
  • Code like this:
    -    if ((prec->dol.type != CONSTANT) &&
    +    if ((prec->dol.type != CONSTANT) &&
     
    should usually become:
    -    if (!dbLinkIsConstant(&prec->dol) &&
    +    if (!dbLinkIsConstant(&prec->dol) &&