##// END OF EJS Templates
Minor edits to tutorial doc
Carol Willing -
Show More
@@ -55,7 +55,7 b' command line style syntax. There are two kinds of magics, line-oriented and'
55 cell-oriented. **Line magics** are prefixed with the ``%`` character and work
55 cell-oriented. **Line magics** are prefixed with the ``%`` character and work
56 much like OS command-line calls: they get as an argument the rest of the line,
56 much like OS command-line calls: they get as an argument the rest of the line,
57 where arguments are passed without parentheses or quotes. **Lines magics** can
57 where arguments are passed without parentheses or quotes. **Lines magics** can
58 return results and can be use in the right and side of an assignment. **Cell
58 return results and can be used in the right hand side of an assignment. **Cell
59 magics** are prefixed with a double ``%%``, and they are functions that get as
59 magics** are prefixed with a double ``%%``, and they are functions that get as
60 an argument not only the rest of the line, but also the lines below it in a
60 an argument not only the rest of the line, but also the lines below it in a
61 separate argument.
61 separate argument.
@@ -123,8 +123,8 b' profiler (-p).'
123 The :magic:`edit` command gives a reasonable approximation of multiline editing,
123 The :magic:`edit` command gives a reasonable approximation of multiline editing,
124 by invoking your favorite editor on the spot. IPython will execute the
124 by invoking your favorite editor on the spot. IPython will execute the
125 code you type in there as if it were typed interactively. Note that for
125 code you type in there as if it were typed interactively. Note that for
126 :magic:`edit` to work, the call to startup your editor have to be a blocking
126 :magic:`edit` to work, the call to startup your editor has to be a blocking
127 call. In a GUI environment, your editor likely have such an option.
127 call. In a GUI environment, your editor likely will have such an option.
128
128
129 Debugging
129 Debugging
130 ---------
130 ---------
General Comments 0
You need to be logged in to leave comments. Login now