##// END OF EJS Templates
Fix documentation typos...
luz.paz -
Show More
@@ -2,7 +2,7 b''
2 """
2 """
3 Support for creating GUI apps and starting event loops.
3 Support for creating GUI apps and starting event loops.
4
4
5 IPython's GUI integration allows interative plotting and GUI usage in IPython
5 IPython's GUI integration allows interactive plotting and GUI usage in IPython
6 session. IPython has two different types of GUI integration:
6 session. IPython has two different types of GUI integration:
7
7
8 1. The terminal based IPython supports GUI event loops through Python's
8 1. The terminal based IPython supports GUI event loops through Python's
@@ -661,7 +661,7 b' def compute_item_matrix(items, row_first=False, empty=None, *args, **kwargs) :'
661 empty : (default None)
661 empty : (default None)
662 default value to fill list if needed
662 default value to fill list if needed
663 separator_size : int (default=2)
663 separator_size : int (default=2)
664 How much caracters will be used as a separation between each columns.
664 How much characters will be used as a separation between each columns.
665 displaywidth : int (default=80)
665 displaywidth : int (default=80)
666 The width of the area onto which the columns should enter
666 The width of the area onto which the columns should enter
667
667
@@ -48,7 +48,7 b' API documentation. This build target skips that.'
48 You can run ``make help`` to see information on all possible make targets.
48 You can run ``make help`` to see information on all possible make targets.
49
49
50 To save time,
50 To save time,
51 the make targets above only proceess the files that have been changed since the
51 the make targets above only process the files that have been changed since the
52 previous docs build.
52 previous docs build.
53 To remove the previous docs build you can use ``make clean``.
53 To remove the previous docs build you can use ``make clean``.
54 You can also combine ``clean`` with other `make` commands;
54 You can also combine ``clean`` with other `make` commands;
@@ -436,7 +436,7 b''
436 "\n",
436 "\n",
437 " c.ScriptMagics.scripts = ['R', 'pypy', 'myprogram']\n",
437 " c.ScriptMagics.scripts = ['R', 'pypy', 'myprogram']\n",
438 "\n",
438 "\n",
439 "And if any of these programs do not apear on your default PATH, then you would also need to specify their location with:\n",
439 "And if any of these programs do not appear on your default PATH, then you would also need to specify their location with:\n",
440 "\n",
440 "\n",
441 " c.ScriptMagics.script_paths = {'myprogram': '/opt/path/to/myprogram'}"
441 " c.ScriptMagics.script_paths = {'myprogram': '/opt/path/to/myprogram'}"
442 ]
442 ]
@@ -118,7 +118,7 b' def main(*args):'
118
118
119 if not_merged :
119 if not_merged :
120 print('*************************************************************************************')
120 print('*************************************************************************************')
121 print('the following branch have not been merged automatically, considere doing it by hand :')
121 print('The following branch has not been merged automatically, consider doing it by hand :')
122 for num, cmd in not_merged.items() :
122 for num, cmd in not_merged.items() :
123 print( "PR {num}: {cmd}".format(num=num, cmd=cmd))
123 print( "PR {num}: {cmd}".format(num=num, cmd=cmd))
124 print('*************************************************************************************')
124 print('*************************************************************************************')
General Comments 0
You need to be logged in to leave comments. Login now