Skip to content

a few spelling fixes #318

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

Merged
merged 1 commit into from
Sep 26, 2020
Merged
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.rst
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,6 @@ implementation of Sass_.
Hampton Catlin originally designed Sass_ language and wrote the first
reference implementation of it in Ruby.

The above three softwares are all distributed under `MIT license`_.
The above three are all distributed under `MIT license`_.

.. _MIT license: https://mit-license.org/
4 changes: 2 additions & 2 deletions docs/changes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -744,8 +744,8 @@ Released on February 21, 2014.
- Dropped support for Python 2.5.
- Fixed build failing on Mac OS X.
[:issue:`4`, :issue:`5`, :issue:`6` by Hyungoo Kang]
- Now builder creates target recursive subdirectories even if it doesn't
exist yet, rather than siliently fails.
- Now the builder creates target subdirectories recursively even if they don't
exist yet, rather than silently failing.
[:issue:`8`, :issue:`9` by Philipp Volguine]
- Merged recent changes from libsass 1.0.1: `57a2f62--v1.0.1`_.

Expand Down
2 changes: 1 addition & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ implementation of Sass_.
Hampton Catlin originally designed Sass_ language and wrote the first
reference implementation of it in Ruby.

The above three softwares are all distributed under `MIT license`_.
The above three are all distributed under `MIT license`_.

.. _MIT license: https://mit-license.org/

Expand Down
2 changes: 1 addition & 1 deletion sass.py
Original file line number Diff line number Diff line change
Expand Up @@ -739,7 +739,7 @@ def _get_file_arg(key):


def and_join(strings):
"""Join the given ``strings`` by commas with last `' and '` conjuction.
"""Join the given ``strings`` by commas with last `' and '` conjunction.

>>> and_join(['Korea', 'Japan', 'China', 'Taiwan'])
'Korea, Japan, China, and Taiwan'
Expand Down
2 changes: 1 addition & 1 deletion sassutils/wsgi.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@


class SassMiddleware(object):
r"""WSGI middleware for development purpose. Everytime a CSS file has
r"""WSGI middleware for development purpose. Every time a CSS file has
requested it finds a matched Sass/SCSS source file and then compiled
it into CSS.

Expand Down