##// END OF EJS Templates
Fixed typos in comments
Nicolas Rougier -
Show More
@@ -329,7 +329,7 b' class InputHookManager(object):'
329 GLUT is quite an old library and it is difficult to ensure proper
329 GLUT is quite an old library and it is difficult to ensure proper
330 integration within IPython since original GLUT does not allow to handle
330 integration within IPython since original GLUT does not allow to handle
331 events one by one. Instead, it requires for the mainloop to be entered
331 events one by one. Instead, it requires for the mainloop to be entered
332 and never returned (there is not event a function to exit he
332 and never returned (there is not even a function to exit he
333 mainloop). Fortunately, there are alternatives such as freeglut
333 mainloop). Fortunately, there are alternatives such as freeglut
334 (available for linux and windows) and the OSX implementation gives
334 (available for linux and windows) and the OSX implementation gives
335 access to a glutCheckLoop() function that blocks itself until a new
335 access to a glutCheckLoop() function that blocks itself until a new
@@ -339,9 +339,9 b' class InputHookManager(object):'
339
339
340 Furthermore, it is not possible to install these handlers without a
340 Furthermore, it is not possible to install these handlers without a
341 window being first created. We choose to make this window invisible and
341 window being first created. We choose to make this window invisible and
342 the user is supposed to akeit visible when needed (see gui-glut.py in
342 the user is supposed to make it visible when needed (see gui-glut.py in
343 the docs/examples/lib directory). This means that display mode options
343 the docs/examples/lib directory). This means that display mode options
344 are set ath this level and user won't be able to change them later
344 are set at this level and user won't be able to change them later
345 without modifying the code. This should probably be made available via
345 without modifying the code. This should probably be made available via
346 IPython options system.
346 IPython options system.
347
347
General Comments 0
You need to be logged in to leave comments. Login now