File tree 5 files changed +7
-7
lines changed
5 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ def test_missing_bundler_arg(self):
46
46
self .assertIn ('Missing argument bundler' , resp .text )
47
47
48
48
def test_notebook_not_found (self ):
49
- """Shoudl respond with 404 error about missing notebook"""
49
+ """Should respond with 404 error about missing notebook"""
50
50
resp = self .request ('GET' , 'bundle/fake.ipynb' ,
51
51
params = {'bundler' : 'fake_bundler' })
52
52
self .assertEqual (resp .status_code , 404 )
Original file line number Diff line number Diff line change @@ -403,7 +403,7 @@ define([
403
403
* @static
404
404
*
405
405
* @param list_list {list_of_sublist} List of sublist of metadata value and name in the dropdown list.
406
- * subslit should contain 2 element each, first a string that woul be displayed in the dropdown list,
406
+ * sublist should contain 2 element each, first a string that would be displayed in the dropdown list,
407
407
* and second the corresponding value to be passed to setter/return by getter. the corresponding value
408
408
* should not be "undefined" or behavior can be unexpected.
409
409
* @param setter {function( cell, newValue )}
Original file line number Diff line number Diff line change @@ -253,7 +253,7 @@ define([
253
253
}
254
254
255
255
if ( event . which === keycodes . down && event . type === 'keypress' && this . tooltip . time_before_tooltip >= 0 ) {
256
- // triger on keypress (!) otherwise inconsistent event.which depending on plateform
256
+ // triger on keypress (!) otherwise inconsistent event.which depending on platform
257
257
// browser and keyboard layout !
258
258
// Pressing '(' , request tooltip, don't forget to reappend it
259
259
// The second argument says to hide the tooltip if the docstring
Original file line number Diff line number Diff line change @@ -348,7 +348,7 @@ define([
348
348
} else if ( code == keycodes . tab ) {
349
349
//all the fastforwarding operation,
350
350
//Check that shared start is not null which can append with prefixed completion
351
- // like %pylab , pylab have no shred start, and ff will result in py<tab><tab>
351
+ // like %pylab , pylab have no shared start, and ff will result in py<tab><tab>
352
352
// to erase py
353
353
var sh = shared_start ( this . raw_result , true ) ;
354
354
if ( sh . str !== '' ) {
@@ -358,7 +358,7 @@ define([
358
358
this . carry_on_completion ( ) ;
359
359
} else if ( code == keycodes . up || code == keycodes . down ) {
360
360
// need to do that to be able to move the arrow
361
- // when on the first or last line ofo a code cell
361
+ // when on the first or last line of a code cell
362
362
event . codemirrorIgnore = true ;
363
363
event . _ipkmIgnore = true ;
364
364
event . preventDefault ( ) ;
Original file line number Diff line number Diff line change @@ -135,7 +135,7 @@ define([
135
135
} ;
136
136
137
137
// deal with all the logic of hiding the tooltip
138
- // and reset it's status
138
+ // and reset its status
139
139
Tooltip . prototype . _hide = function ( ) {
140
140
this . _hidden = true ;
141
141
this . tooltip . fadeOut ( 'fast' ) ;
@@ -243,7 +243,7 @@ define([
243
243
this . _sticky = false ;
244
244
} ;
245
245
246
- // put the tooltip in a sicky state for 10 seconds
246
+ // put the tooltip in a sticky state for 10 seconds
247
247
// it won't be removed by remove_and_cancel() unless you called with
248
248
// the first parameter set to true.
249
249
// remove_and_cancel_tooltip(true)
You can’t perform that action at this time.
0 commit comments