@@ -72,7 +72,7 @@ objects for input and output:
7272 - An :class: `~prompt_toolkit.output.base.Output ` instance, which is an
7373 abstraction of the output stream, and is called by the renderer.
7474
75- Both are optional and normally not needed to pass explicitely . Usually, the
75+ Both are optional and normally not needed to pass explicitly . Usually, the
7676default works fine.
7777
7878There is a third I/O object which is also required by the application, but not
@@ -198,7 +198,7 @@ vertical line:
198198 # the left.
199199 Window(content = BufferControl(buffer = buffer1)),
200200
201- # A vertical line in the middle. We explicitely specify the width, to
201+ # A vertical line in the middle. We explicitly specify the width, to
202202 # make sure that the layout engine will not try to divide the whole
203203 # width by three for all these windows. The window will simply fill its
204204 # content by repeating this character.
@@ -214,17 +214,17 @@ vertical line:
214214 app.run()
215215
216216
217- More complex layouts can be achieved by nesting multiple
217+ More complex layouts can be achieved by nesting multiple
218218:class: `~prompt_toolkit.layout.containers.VSplit `,
219- :class: `~prompt_toolkit.layout.containers.HSplit ` and
219+ :class: `~prompt_toolkit.layout.containers.HSplit ` and
220220:class: `~prompt_toolkit.layout.containers.FloatContainer ` objects.
221221
222222If you want to make some part of the layout only visible when a certain
223223condition is satisfied, use a
224224:class: `~prompt_toolkit.layout.containers.ConditionalContainer `.
225225
226226
227- Focussing windows
227+ Focusing windows
228228^^^^^^^^^^^^^^^^^
229229
230230TODO
@@ -241,7 +241,7 @@ There are two kinds of key bindings:
241241- Global key bindings, which are always active.
242242- Key bindings that belong to a certain
243243 :class: `~prompt_toolkit.layout.controls.UIControl ` and are only active when
244- this control is focussed . Both
244+ this control is focused . Both
245245 :class: `~prompt_toolkit.layout.controls.BufferControl `
246246 :class: `~prompt_toolkit.layout.controls.FormattedTextControl ` take a
247247 ``key_bindings `` argument.
@@ -294,7 +294,7 @@ All container objects, like :class:`~prompt_toolkit.layout.containers.VSplit`
294294and :class: `~prompt_toolkit.layout.containers.HSplit ` take a ``modal `` argument.
295295
296296If this flag has been set, then key bindings from the parent account are not
297- taken into account if one of the childen windows has the focus.
297+ taken into account if one of the children windows has the focus.
298298
299299This is useful in a complex layout, where many controls have their own key
300300bindings, but you only want to enable the key bindings for a certain region of
@@ -307,7 +307,7 @@ More about the Window class
307307---------------------------
308308
309309As said earlier, a :class: `~prompt_toolkit.layout.containers.Window ` is a
310- :class: `~prompt_toolkit.layout.containers.Container ` that wraps a
310+ :class: `~prompt_toolkit.layout.containers.Container ` that wraps a
311311:class: `~prompt_toolkit.layout.controls.UIControl `, like a
312312:class: `~prompt_toolkit.layout.controls.BufferControl ` or
313313:class: `~prompt_toolkit.layout.controls.FormattedTextControl `.
0 commit comments