aboutsummaryrefslogtreecommitdiffstats
path: root/test/match.scm
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-12-27 18:18:54 +0000
committerDavid Robillard <d@drobilla.net>2012-12-27 18:18:54 +0000
commit0c09f8394149afdd7cca5908e08e2bb69971b50b (patch)
tree72fc51e58ed8b84f0cecfebb1cc9d3092aac9355 /test/match.scm
parent01a458a33f3329a254206b6bbe858542d7634ca4 (diff)
downloadresp-0c09f8394149afdd7cca5908e08e2bb69971b50b.tar.gz
resp-0c09f8394149afdd7cca5908e08e2bb69971b50b.tar.bz2
resp-0c09f8394149afdd7cca5908e08e2bb69971b50b.zip
def-type => define-type
git-svn-id: http://svn.drobilla.net/resp/trunk@453 ad02d1e2-f140-0410-9f75-f8b11f17cedd
Diffstat (limited to 'test/match.scm')
-rw-r--r--test/match.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/match.scm b/test/match.scm
index db19be1..0cf0efc 100644
--- a/test/match.scm
+++ b/test/match.scm
@@ -1,5 +1,5 @@
; A Shape is either a Circle (w/ radius) or a Rectangle (w/ width/height)
-(def-type (Shape)
+(define-type (Shape)
(Circle Float)
(Rectangle Float Float))