diff options
author | Andre Polykanine A.K.A. Menelion ElensĂșlĂ« <andre@oire.org> | 2017-10-11 01:49:48 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-11 01:49:48 +0300 |
commit | ace91ad54bb2920f9438eef0f40ec508a86535bd (patch) | |
tree | 2f9622264298a77ca8cc8d165c28650aa407a4c3 | |
parent | 7a2a109f1d55fca4aa765c518d3282a25a02aed1 (diff) | |
parent | efa793fbb24eaa3d9a48b819c8006d18c9025fb0 (diff) |
Merge pull request #2903 from kenrick95/master
[chicken/en] Fix typo in CHICKEN language
-rw-r--r-- | CHICKEN.html.markdown | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/CHICKEN.html.markdown b/CHICKEN.html.markdown index 7fb0270b..bb2f91f0 100644 --- a/CHICKEN.html.markdown +++ b/CHICKEN.html.markdown @@ -8,7 +8,7 @@ contributors: CHICKEN is an implementation of Scheme programming language that can compile Scheme programs to C code as well as interpret them. CHICKEN -supports RSR5 and RSR7 (work in progress) standards and many extensions. +supports R5RS and R7RS (work in progress) standards and many extensions. ```scheme @@ -510,7 +510,7 @@ sqr ;; => #<procedure (sqr x)> ``` ## Further Reading * [CHICKEN User's Manual](http://wiki.call-cc.org/man/4/The%20User%27s%20Manual). -* [RSR5 standards](http://www.schemers.org/Documents/Standards/R5RS) +* [R5RS standards](http://www.schemers.org/Documents/Standards/R5RS) ## Extra Info |