Skip to content
This repository has been archived by the owner on Feb 22, 2022. It is now read-only.

Commit

Permalink
Typos.
Browse files Browse the repository at this point in the history
  • Loading branch information
stephank committed Jul 14, 2011
1 parent 0799cc4 commit 6a9fce1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/domjuice.html
Expand Up @@ -39,7 +39,7 @@
<span class="nx">walker</span> <span class="nx">rootNode</span></pre></div> </td> </tr> <tr id="section-7"> <td class="docs"> <div class="pilwrap"> <a class="pilcrow" href="#section-7">&#182;</a> </div> <h2>Context Adaptors</h2> </td> <td class="code"> <div class="highlight"><pre></pre></div> </td> </tr> <tr id="section-8"> <td class="docs"> <div class="pilwrap"> <a class="pilcrow" href="#section-8">&#182;</a> </div> <p>Adaptors are used to access and listen for changes to properties on
different types of objects and collections.</p>

<p>Listening for changes works a bit differently form the <code>bind</code> methods in,
<p>Listening for changes works a bit differently from the <code>bind</code> methods in,
say, Backbone.js or jQuery. The <code>bind</code> methods of adaptors should return
a handle object or nothing. Handle objects are expected to have a <code>unbind</code>
method taking no parameters.</p> </td> <td class="code"> <div class="highlight"><pre></pre></div> </td> </tr> <tr id="section-9"> <td class="docs"> <div class="pilwrap"> <a class="pilcrow" href="#section-9">&#182;</a> </div> <p>The following is the default adaptor for regular JavaScript <code>Object</code>s and
Expand Down
2 changes: 1 addition & 1 deletion domjuice.coffee
Expand Up @@ -59,7 +59,7 @@ eachNode = (rootNode, callback) ->
# Adaptors are used to access and listen for changes to properties on
# different types of objects and collections.
#
# Listening for changes works a bit differently form the `bind` methods in,
# Listening for changes works a bit differently from the `bind` methods in,
# say, Backbone.js or jQuery. The `bind` methods of adaptors should return
# a handle object or nothing. Handle objects are expected to have a `unbind`
# method taking no parameters.
Expand Down
2 changes: 1 addition & 1 deletion nodejs-example.js
Expand Up @@ -2,7 +2,7 @@

// You'd normally just require DOMJuice:
//var DOMJuice = require('domjuice');
// We do this instead to make things wrong from the current directory:
// We do this instead to make things work from the current directory:
var DOMJuice = require('./');

// Use jsdom to get a DOM environment server-side.
Expand Down

0 comments on commit 6a9fce1

Please sign in to comment.