commit 2daf535fd7e04cd59ad9172e552120bda6385fff parent c9eed70d4a4290ae604421402aeb6beaf62201e0 Author: Taylan Ulrich Bayırlı/Kammer <taylanbayirli@gmail.com> Date: Mon, 17 Aug 2015 11:31:20 +0200 Fix cdr to 'cdr in code. Diffstat:
M | srfi-123.md | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/srfi-123.md b/srfi-123.md @@ -100,7 +100,7 @@ types; SRFI-9 and R7RS cannot.) Some notes on specific types: viewed as the head of a list. ```` - (ref '(a b c . d) cdr) ;=> (b c . d) + (ref '(a b c . d) 'cdr) ;=> (b c . d) (ref '(a b c . d) 2) ;=> c ````