diff options
| author | Andre Polykanine <ap@oire.me> | 2019-02-09 02:04:57 +0200 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-02-09 02:04:57 +0200 | 
| commit | 4602f2be9dd1464368329bf1106821017e37a7bc (patch) | |
| tree | 01799419a6868d2f11f821ea5ddb6cb14973162e /pascal.html.markdown | |
| parent | 7c23122786c75d530103b545c6dcd9f6d3dd85e1 (diff) | |
| parent | 50b534d2a57d70e3faa2f6f027df9d8e879d5a1a (diff) | |
Merge pull request #3466 from emilioTe/master
[pascal/en] 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) | 
