From d65b8a359336b049fd49abec4276d1d2c567ac5a Mon Sep 17 00:00:00 2001 From: Hristo Yankov Date: Wed, 5 Aug 2015 23:20:52 +0300 Subject: [PATCH] Fixing minor word order issue --- content/organization.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/organization.md b/content/organization.md index b5e4a110..efe3bfca 100644 --- a/content/organization.md +++ b/content/organization.md @@ -465,8 +465,8 @@ on the first line: (:gen-class)) ``` -`ns` is the primary way you that create and manage namespaces within -Clojure. I'm going to explain it fully shortly. For now, though, this +`ns` is the primary way to create and manage namespaces within Clojure. +I'm going to explain it fully shortly. For now, though, this line is very similar to the `in-ns` function we used above. It creates a namespace if it doesn't exist and then switches to it. `(:gen-class)` will also be covered in detail later.