]> git.rkrishnan.org Git - sicp.git/commitdiff
bug fix.
authorRamakrishnan Muthukrishnan <vu3rdd@gmail.com>
Mon, 14 Jun 2010 03:02:52 +0000 (08:32 +0530)
committerRamakrishnan Muthukrishnan <vu3rdd@gmail.com>
Mon, 14 Jun 2010 03:02:52 +0000 (08:32 +0530)
src/sicp/ex2_7.clj

index 643920c0d519e0c2aea69774f7d6d57bfd1159d4..4a747d96a237b82ba0314ed92a2bdfd01c30b45c 100644 (file)
@@ -5,8 +5,8 @@
 (defn make-interval [x y]
   (list x y))
 
-(defn upper-bound [i]
+(defn lower-bound [i]
   (first i))
 
-(defn lower-bound [i]
+(defn upper-bound [i]
   (first (rest i)))