From 27a0ad219203a38382c75bf5107aa8c489562980 Mon Sep 17 00:00:00 2001 From: John C Bledsoe Date: Sat, 11 Feb 2012 15:33:22 -0600 Subject: [PATCH] Even more typo fixes --- src/prezo/content.cljs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/prezo/content.cljs b/src/prezo/content.cljs index f823dd0..346252c 100644 --- a/src/prezo/content.cljs +++ b/src/prezo/content.cljs @@ -44,7 +44,7 @@ "from the global namespace to JQuery's namespace.")) (def ex1-cljs-func-text (str "

Just a Function

" - "Our logging function is no longer a plugin; its now just
" + "Our logging function is no longer a plugin; it's now just
" "a standard function in its own namespace.
")) (def ex1-cljs-def-text (str "

Defaulting

" @@ -52,11 +52,11 @@ (def ex1-cljs-macro-text (str "

'->' Macro

" "Provides chaining similar to what we familiar with, without requiring
" - "functions be part of the objects namespace.
")) + "functions be part of the object's namespace.
")) (def ex2-proto-def-text (str "

DomContent

" "This protocol is used in Domina to define the contract required
" - "to make base function like 'append!' and 'prepend!' work.
" + "to make base functions like 'append!' and 'prepend!' work.
" "It provides the same basic structure as JQuery's WrappedSet
" "without requiring a wrapper object, that is aware of all
" "implementing cases.

" @@ -71,7 +71,7 @@ "match a known type that assumes the unknown type can be
" "converted to a sequence.

" "It is important to understand, that unlike extending an
" - "object in JavaScript, these extentions are local to this
" + "object in JavaScript, these extensions are local to this
" "namespace.
")) (def ex2-proto-et-text (str "

Extend Type

" @@ -81,11 +81,11 @@ "This means that it can be used by the DomContent default
" "mapping.

" "It is important to understand, that unlike extending an
" - "object in JavaScript, these extentions are local to this
" + "object in JavaScript, these extensions are local to this
" "namespace.
")) (def def-atom-text (str "

Atoms

" - "Even though we don't deal with Syncronization in JavaScript in the same
" + "Even though we don't deal with Synchronization in JavaScript in the same
" "way we do in Java, Atoms still provide controlled access to mutable state,
" "as they do in Clojure. Other features of Atoms provide a perfect
" "platform for building models similar to "