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

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 README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ To get the latest commit from GitHub
pip install -e git+git://github.com/kronoscode/django-magicembed.git#egg=magicembed
```

If you have a requeriments list add this to your requeriments
If you have a requirements list add this to your requirements

1. <code>magicembed==(version)</code>

Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@
# The format is a list of tuples containing the path and title.
#epub_pre_files = []

# HTML files shat should be inserted after the pages created by sphinx.
# HTML files that should be inserted after the pages created by sphinx.
# The format is a list of tuples containing the path and title.
#epub_post_files = []

Expand Down
2 changes: 1 addition & 1 deletion magicembed/providers.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def _call_api(self):


def get_provider(url, size=None):
'''returns a provider instance acording to the url'''
'''returns a provider instance according to the url'''
provider_domain = dict(youtube=Youtube, vimeo=Vimeo)
for domain, provider in provider_domain.items():
if domain in url:
Expand Down
2 changes: 1 addition & 1 deletion magicembed/tests/runtests.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python
"""
This script is a trick to setup a fake Django environment, since this reusable
app will be developed and tested outside any specifiv Django project.
app will be developed and tested outside any specific Django project.

Via ``settings.configure`` you will be able to set all necessary settings
for your app and run the tests as if you were calling ``./manage.py test``.
Expand Down
2 changes: 1 addition & 1 deletion magicembed/tests/south_settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

With normal tests we want to use the fastest possible way which is an
in-memory sqlite database but if you want to create South migrations you
need a persistant database.
need a persistent database.

Unfortunately there seems to be an issue with either South or syncdb so that
defining two routers ("default" and "south") does not work.
Expand Down