Skip to content
This repository has been archived by the owner on Mar 6, 2019. It is now read-only.

Commit

Permalink
fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
snatchev committed Apr 23, 2014
1 parent 09a8767 commit 951509d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions docs/pourover.html
Original file line number Diff line number Diff line change
Expand Up @@ -956,7 +956,7 @@ <h1>Filters</h1>
<a class="pilcrow" href="#section-38">&#182;</a>
</div>
<p>Given an array of possible values, initializes the object that will store the cached results
of querying for that possibilitiy.</p>
of querying for that possibility.</p>

</div>

Expand Down Expand Up @@ -2013,7 +2013,7 @@ <h1>PourOver.UI</h1>
_.extend(PourOver.UI.Element.prototype,Backbone.Events,{
initialize: <span class="keyword">function</span>(){},
getMatchSet: <span class="keyword">function</span>(){
<span class="keyword">throw</span> <span class="string">"No get match set function specifiec"</span>
<span class="keyword">throw</span> <span class="string">"No get match set function specified"</span>
},
getFilterState: <span class="keyword">function</span>(){
<span class="keyword">throw</span> <span class="string">"No get filter state specified"</span>;
Expand Down Expand Up @@ -2267,7 +2267,7 @@ <h1>Presets</h1>
<div class="pilwrap ">
<a class="pilcrow" href="#section-96">&#182;</a>
</div>
<p>Retreive a specific attr of a specific item from the buffer.</p>
<p>Retrieve a specific attr of a specific item from the buffer.</p>

</div>

Expand Down
6 changes: 3 additions & 3 deletions pourover.js
Original file line number Diff line number Diff line change
Expand Up @@ -682,7 +682,7 @@ var PourOver = (function(){
initialize: function(){},

// Given an array of possible values, initializes the object that will store the cached results
// of querying for that possibilitiy.
// of querying for that possibility.
create_possibilities: function(vs){
var o = {};
_(vs).each(function(v){
Expand Down Expand Up @@ -1221,7 +1221,7 @@ var PourOver = (function(){
_.extend(PourOver.UI.Element.prototype,PourOver.Events,{
initialize: function(){},
getMatchSet: function(){
throw "No get match set function specifiec"
throw "No get match set function specified"
},
getFilterState: function(){
throw "No get filter state specified";
Expand Down Expand Up @@ -1366,7 +1366,7 @@ var PourOver = (function(){
});
},

// Retreive a specific attr of a specific item from the buffer.
// Retrieve a specific attr of a specific item from the buffer.
getBufferedValue: function(guid,attr){
if(this.buffered_items.hasOwnProperty(guid)){
return this.buffered_items[guid][attr] || false;
Expand Down

0 comments on commit 951509d

Please sign in to comment.