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 #286

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 docs/express.rst
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ Express.
Settings
--------

There's a smorgasboard of options that can be used, as there's many ways to
There's a smorgasbord of options that can be used, as there's many ways to
customised the Express Checkout experience. Most of these are handled by simple
settings.

Expand Down
2 changes: 1 addition & 1 deletion docs/payflow.rst
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ Optional settings:
``PAYPAL_PAYFLOW_CURRENCY``
The 3 character currency code to use for transactions. Defaults to 'USD'.
``PAYPAL_PAYFLOW_USER``
The ID of the user authorised to process transations. If you only have one
The ID of the user authorised to process transactions. If you only have one
user on the account, then this is the same as the VENDOR_ID and there is no
need to specify it.
``PAYPAL_PAYFLOW_PARTNER``
Expand Down
2 changes: 1 addition & 1 deletion paypal/express/facade.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""
Responsible for briding between Oscar and the PayPal gateway
Responsible for bridging between Oscar and the PayPal gateway
"""
from django.conf import settings
from django.contrib.sites.models import Site
Expand Down
2 changes: 1 addition & 1 deletion paypal/payflow/facade.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ def credit(order_number, pnref=None, amt=None):
:pnref: The PNREF of the authorization transaction to use. If not
specified, the order number is used to retrieve the appropriate transaction.
:amt: A custom amount to capture. If not specified, the entire transaction
is refuneded.
is refunded.
"""
if pnref is None:
# No PNREF specified, look-up the auth/sale transaction for this order number
Expand Down
2 changes: 1 addition & 1 deletion sandbox/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@
PAYPAL_CLIENT_ID = ''
PAYPAL_CLIENT_SECRET = ''

# Put your own sandbox settings into an integration.py modulde (that is ignored
# Put your own sandbox settings into an integration.py module (that is ignored
# by git).
try:
from integration import * # noqa
Expand Down