File tree Expand file tree Collapse file tree 4 files changed +4
-5
lines changed Expand file tree Collapse file tree 4 files changed +4
-5
lines changed Original file line number Diff line number Diff 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 | 
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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`. 
Original file line number Diff line number Diff 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 ))
                         You can’t perform that action at this time. 
           
                  
0 commit comments