Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: fix simple typo, minumum -> minimum #492

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions youtube_dl_gui/mainframe.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ class MainFrame(wx.Frame):
and binding the events.

Attributes:
FRAMES_MIN_SIZE (tuple): Tuple that contains the minumum width, height of the frame.
FRAMES_MIN_SIZE (tuple): Tuple that contains the minimum width, height of the frame.

Labels area (strings): Strings for the widgets labels.

Expand Down Expand Up @@ -1212,7 +1212,7 @@ def _set_columns(self):

# If the column width obtained from wxLIST_AUTOSIZE_USEHEADER
# is smaller than the minimum allowed column width
# then set the column width to the minumum allowed size
# then set the column width to the minimum allowed size
if self.GetColumnWidth(column_item[0]) < column_item[2]:
self.SetColumnWidth(column_item[0], column_item[2])

Expand Down