From 0f40f6d0f2b600a7b9df5d13ab5cea9b6d6af66b Mon Sep 17 00:00:00 2001 From: Dan Connolly Date: Tue, 5 Jul 2016 14:01:20 -0500 Subject: [PATCH] strike extra apostrophy it's = it is --- MANUAL.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MANUAL.md b/MANUAL.md index 1f59044df..d92d96b59 100644 --- a/MANUAL.md +++ b/MANUAL.md @@ -1,5 +1,5 @@ ## The Compiler -The Carp language is very tightly integrated with it's compiler which itself is written in a dynamic version of Carp (implemented in C). To work on a Carp program you run ```carp``` (first making sure it's in your $PATH, see installation instructions below) which starts the REPL. Everything you want to do to your program can be controlled from here. +The Carp language is very tightly integrated with its compiler which itself is written in a dynamic version of Carp (implemented in C). To work on a Carp program you run ```carp``` (first making sure it's in your $PATH, see installation instructions below) which starts the REPL. Everything you want to do to your program can be controlled from here. For example, to compile a function named 'fib' you enter the following: ```clojure