Skip to content

Commit ae78117

Browse files
timgates42sebp
authored andcommitted
docs: Fix a few typos
There are small typos in: - examples/spinner_ext_example.py - examples/treeview_filter_example.py Fixes: - Should read `positioned` rather than `positionned`. - Should read `milliseconds` rather than `miliseconds`.
1 parent aab32e3 commit ae78117

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

examples/spinner_ext_example.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ def start_timer(self):
6767
""" Start the timer. """
6868
self.buttonStart.set_sensitive(False)
6969
self.buttonStop.set_sensitive(True)
70-
# time out will check every 250 miliseconds (1/4 of a second)
70+
# time out will check every 250 milliseconds (1/4 of a second)
7171
self.counter = 4 * int(self.entry.get_text())
7272
self.label.set_label("Remaining: " + str(int(self.counter / 4)))
7373
self.spinner.start()

examples/treeview_filter_example.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def __init__(self):
2424
super().__init__(title="Treeview Filter Demo")
2525
self.set_border_width(10)
2626

27-
# Setting up the self.grid in which the elements are to be positionned
27+
# Setting up the self.grid in which the elements are to be positioned
2828
self.grid = Gtk.Grid()
2929
self.grid.set_column_homogeneous(True)
3030
self.grid.set_row_homogeneous(True)

0 commit comments

Comments
 (0)