diff options
author | Emilio Testa <te.emilio@gmail.com> | 2019-02-07 19:27:55 -0500 |
---|---|---|
committer | Emilio Testa <te.emilio@gmail.com> | 2019-02-07 19:27:55 -0500 |
commit | 50b534d2a57d70e3faa2f6f027df9d8e879d5a1a (patch) | |
tree | 1c83b693a5afa53dbdbbdc5a671cfe884d199b74 /pascal.html.markdown | |
parent | 4eb2baaf0cfcc4f4b6d60e63fb66c690ed3be56d (diff) |
Fixed missing escape character
Diffstat (limited to 'pascal.html.markdown')
-rw-r--r-- | pascal.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
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) |