Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/live_cpu_graph/live_cpu_graph/static/excanvas.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ if (!document.createElement('canvas').getContext) {
var Z2 = Z / 2;

/**
* This funtion is assigned to the <canvas> elements as element.getContext().
* This function is assigned to the <canvas> elements as element.getContext().
* @this {HTMLElement}
* @return {CanvasRenderingContext2D_}
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -990,7 +990,7 @@
tagName: 'div',

// jQuery delegate for element lookup, scoped to DOM elements within the
// current view. This should be prefered to global lookups where possible.
// current view. This should be preferred to global lookups where possible.
$: function(selector) {
return this.$el.find(selector);
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ parse: function parse(input) {

var symbol, preErrorSymbol, state, action, a, r, yyval={},p,len,newState, expected;
while (true) {
// retreive state number from top of stack
// retrieve state number from top of stack
state = stack[stack.length-1];

// use default actions if available
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -990,7 +990,7 @@
tagName: 'div',

// jQuery delegate for element lookup, scoped to DOM elements within the
// current view. This should be prefered to global lookups where possible.
// current view. This should be preferred to global lookups where possible.
$: function(selector) {
return this.$el.find(selector);
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ parse: function parse(input) {

var symbol, preErrorSymbol, state, action, a, r, yyval={},p,len,newState, expected;
while (true) {
// retreive state number from top of stack
// retrieve state number from top of stack
state = stack[stack.length-1];

// use default actions if available
Expand Down
2 changes: 1 addition & 1 deletion examples/simple_pyramid_chat/chatter2/static/backbone.js
Original file line number Diff line number Diff line change
Expand Up @@ -990,7 +990,7 @@
tagName: 'div',

// jQuery delegate for element lookup, scoped to DOM elements within the
// current view. This should be prefered to global lookups where possible.
// current view. This should be preferred to global lookups where possible.
$: function(selector) {
return this.$el.find(selector);
},
Expand Down
2 changes: 1 addition & 1 deletion examples/simple_pyramid_chat/chatter2/static/handlebars.js
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ parse: function parse(input) {

var symbol, preErrorSymbol, state, action, a, r, yyval={},p,len,newState, expected;
while (true) {
// retreive state number from top of stack
// retrieve state number from top of stack
state = stack[stack.length-1];

// use default actions if available
Expand Down
2 changes: 1 addition & 1 deletion examples/testapp/testapp/static/backbone.js
Original file line number Diff line number Diff line change
Expand Up @@ -990,7 +990,7 @@
tagName: 'div',

// jQuery delegate for element lookup, scoped to DOM elements within the
// current view. This should be prefered to global lookups where possible.
// current view. This should be preferred to global lookups where possible.
$: function(selector) {
return this.$el.find(selector);
},
Expand Down
2 changes: 1 addition & 1 deletion examples/testapp/testapp/static/handlebars.js
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ parse: function parse(input) {

var symbol, preErrorSymbol, state, action, a, r, yyval={},p,len,newState, expected;
while (true) {
// retreive state number from top of stack
// retrieve state number from top of stack
state = stack[stack.length-1];

// use default actions if available
Expand Down
2 changes: 1 addition & 1 deletion socketio/virtsocket.py
Original file line number Diff line number Diff line change
Expand Up @@ -370,7 +370,7 @@ def _receiver_loop(self):
continue

if pkt['type'] == 'heartbeat':
# This is already dealth with in put_server_msg() when
# This is already dealt with in put_server_msg() when
# any incoming raw data arrives.
continue

Expand Down
2 changes: 1 addition & 1 deletion tests/jstests/static/qunit.js
Original file line number Diff line number Diff line change
Expand Up @@ -1024,7 +1024,7 @@ addEvent( window, "load", QUnit.load );
onErrorFnPrev = window.onerror;

// Cover uncaught exceptions
// Returning true will surpress the default browser handler,
// Returning true will suppress the default browser handler,
// returning false will let it run.
window.onerror = function ( error, filePath, linerNr ) {
var ret = false;
Expand Down