Skip to content

Commit caf5233

Browse files
committed
corrected typo eitor -> editor from d04be48
Console. -> console. , see #59 (comment)
1 parent f941c7f commit caf5233

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

PythonScript/src/CreateWrapper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -702,7 +702,7 @@ def writeScintillaDoc(f, out):
702702
v["Param2Type"] = mapType(v["Param2Type"])
703703

704704
# out.write("/** " + "\n * ".join(v["Comment"]) + "\n */\n")
705-
out.write(".. method:: eitor.")
705+
out.write(".. method:: editor.")
706706
out.write(getPythonSignature(v).replace('intptr_t','int')) # documentation should contain int instead of intptr_t
707707
out.write("\n\n ")
708708
out.write("\n ".join(v["Comment"]).replace('\\', '\\\\'))

docs/source/console.rst

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,28 +5,28 @@ Console Object
55

66

77

8-
.. method:: Console.write(string)
8+
.. method:: console.write(string)
99

1010
Writes text to the console.
1111

12-
.. method:: Console.writeError(string)
12+
.. method:: console.writeError(string)
1313

1414
Writes text to the console in red
1515

16-
.. method:: Console.clear()
16+
.. method:: console.clear()
1717

1818
Clears the console
1919

2020

21-
.. method:: Console.show()
21+
.. method:: console.show()
2222

2323
Shows the console window.
2424

25-
.. method:: Console.hide()
25+
.. method:: console.hide()
2626

2727
Hides the console window
2828

29-
.. method:: Console.run(commandLine[, stdout[, stderr]])
29+
.. method:: console.run(commandLine[, stdout[, stderr]])
3030

3131
Runs an external program, with output optionally directed to the given objects (which must support a `write` method).
3232

@@ -59,7 +59,7 @@ Console Object
5959

6060

6161

62-
.. attribute:: Console.editor
62+
.. attribute:: console.editor
6363

6464
An :class:`Editor` object for the console window. This enables you to change colours, styles, even add and remove text if
6565
you so wish, from the console window. Note that the console window is always left in a read-only state, so in order to change

0 commit comments

Comments
 (0)