Skip to content

Commit d984da0

Browse files
authored
Merge pull request write-you-a-scheme-v2#40 from erhathaway/patch-1
fix: grammar
2 parents 60695f9 + db374f5 commit d984da0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/00_overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ If you are interested in building a typed language in Haskell, [this](http://okm
123123
Dynamic languages are not all doom and gloom: they give the user tremendous flexibility. The R Programming Language is an excellent example of a dynamic language that excels at statistical computing by giving the user incredible flexibility and choice over how to implement ideas.
124124

125125
A concept called Dynamic Dispatch allows functions to be determined, at runtime, by the types of the arguments passed in, so `(+ 1 1)` and `(+ "a" "b")` could use different versions of the `+` function.
126-
This is a key feature is dynamically typed programming languages, and we will be implementing this feature in our Scheme.
126+
This is a key feature in dynamically typed programming languages, and we will be implementing this feature in our Scheme.
127127

128128
## Interpreted
129129
We are building an interpreted language, an alternative to compiling to assembly language, LLVM or using a virtual machine like Java's JVM.

0 commit comments

Comments
 (0)