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 a few typos #28

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

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/animation/easing/easing.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ def createCurveIcons(self):
brush = QtGui.QBrush(gradient)

# The original C++ code uses undocumented calls to get the names of the
# different curve types. We do the Python equivalant (but without
# different curve types. We do the Python equivalent (but without
# cheating)
curve_types = [(n, c) for n, c in QtCore.QEasingCurve.__dict__.items()
if isinstance(c, QtCore.QEasingCurve.Type) \
Expand Down
2 changes: 1 addition & 1 deletion examples/itemviews/addressbook/addressbook.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def createMenus(self):
toolMenu.addSeparator()
self.removeAction = self.createAction("&Remove Entry", toolMenu, self.addressWidget.removeEntry)

# Disable the edit and remove menu items initally, as there are
# Disable the edit and remove menu items initially, as there are
# no items yet.
self.editAction.setEnabled(False)
self.removeAction.setEnabled(False)
Expand Down
2 changes: 1 addition & 1 deletion mobility/messaging/querymessages.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# Acquire a handle to the message manager
manager = QMessageManager()

# Find the matching message IDs, limiting our results to a managable number
# Find the matching message IDs, limiting our results to a manageable number
matchingIds = manager.queryMessages(filter, sortOrder, 100)

n = 0
Expand Down