From 50b534d2a57d70e3faa2f6f027df9d8e879d5a1a Mon Sep 17 00:00:00 2001 From: Emilio Testa Date: Thu, 7 Feb 2019 19:27:55 -0500 Subject: [PATCH] Fixed missing escape character --- pascal.html.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pascal.html.markdown b/pascal.html.markdown index 28dcc10f..9fb51c3b 100644 --- a/pascal.html.markdown +++ b/pascal.html.markdown @@ -66,7 +66,7 @@ program Learn_More; const PI = 3.141592654; - GNU = 'GNU's Not Unix'; + GNU = 'GNU''s Not Unix'; // constants are conventionally named using CAPS // their values are fixed and cannot be changed during runtime // holds any standard data type (integer, real, boolean, char, string)