Skip to content

Commit a08fbe7

Browse files
vaaaaanquishjonathanslenders
authored andcommitted
Change CommandLineInterface to Application.
1 parent 7db9356 commit a08fbe7

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

docs/pages/advanced_topics/architecture.rst

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,7 @@ TODO: this is a little outdated.
6868
|
6969
| Normally after every key press, the output will be
7070
| rendered again. This happens in the event loop of
71-
| the `CommandLineInterface` where `Renderer.render` is
72-
| called.
71+
| the `Application` where `Renderer.render` is called.
7372
v
7473
+---------------------------------------------------------------+
7574
| Layout |

docs/pages/full_screen_apps.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ the key handler:
307307
Pressing Ctrl-Q will exit the user interface.
308308
309309
Setting a return value means: quit the event loop that drives the user
310-
interface and return this value from the `CommandLineInterface.run()` call.
310+
interface and return this value from the `Application.run()` call.
311311
"""
312312
event.app.exit()
313313

examples/full-screen/split-screen.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ def _(event):
105105
Pressing Ctrl-Q or Ctrl-C will exit the user interface.
106106
107107
Setting a return value means: quit the event loop that drives the user
108-
interface and return this value from the `CommandLineInterface.run()` call.
108+
interface and return this value from the `Application.run()` call.
109109
110110
Note that Ctrl-Q does not work on all terminals. Sometimes it requires
111111
executing `stty -ixon`.

examples/telnet/chat-app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def interact(connection):
5353

5454
_connections.append(connection)
5555
try:
56-
# Set CommandLineInterface.
56+
# Set Application.
5757
while True:
5858
try:
5959
result = yield From(prompt(message=prompt_msg, async_=True))

0 commit comments

Comments
 (0)