Skip to content

Commit 8d6f737

Browse files
committed
minor formatting changes.
1 parent fc5ea93 commit 8d6f737

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646

4747
# General information about the project.
4848
project = u'pythonguide'
49-
copyright = u'2013. A <a href="http://kennethreitz.com/pages/open-projects.html">Kenneth Reitz</a> Project. <a href="http://creativecommons.org/licenses/by-nc-sa/3.0/"> Creative Commons Share-Alike 3.0</a>.'
49+
copyright = u'2013. A <a href="http://kennethreitz.com/pages/open-projects.html">Kenneth Reitz</a> Project. <a href="http://creativecommons.org/licenses/by-nc-sa/3.0/"> Creative Commons Share-Alike 3.0</a>'
5050

5151
# The version info for the project you're documenting, acts as replacement for
5252
# |version| and |release|, also used in various other places throughout the

docs/writing/license.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,22 +14,22 @@ from.
1414
In general, these licenses tend to fall into one of two categories:
1515

1616
1. licenses that focus more on the user's freedom to do with the
17-
software as they please (these are the more-permissive open
17+
software as they please (these are the more permissive open
1818
source licenses such as the MIT, BSD, & Apache).
1919

2020
2. licenses that focus more on making sure that the code itself —
2121
including any changes made to it and distributed along with it —
22-
always remains free (these are the less-permissive free software
23-
licenses, for example, the GPL and LGPL).
22+
always remains free (these are the less permissive free software
23+
licenses such as the GPL and LGPL).
2424

25-
The latter are less-permissive in the sense that they don't permit
25+
The latter are less permissive in the sense that they don't permit
2626
someone to add code to the software and distribute it without also
2727
including the source code for their changes.
2828

2929
To help you choose one for your project, there's a `license chooser <http://three.org/openart/license_chooser/>`_,
3030
**use it**.
3131

32-
**More-Permissive**
32+
**More Permissive**
3333

3434
- PSFL (Python Software Foundation License) -- for contributing to python itself
3535
- MIT / BSD / ISC
@@ -40,7 +40,7 @@ To help you choose one for your project, there's a `license chooser <http://thre
4040

4141
- Apache
4242

43-
**Less-Permissive:**
43+
**Less Permissive:**
4444

4545
- LGPL
4646
- GPL

docs/writing/style.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ are a probable indication that such a refactoring is needed.
256256
Idioms
257257
------
258258

259-
A programming Idiom, put simply, is a *way* to write code. The notion of programming Idioms
259+
A programming idiom, put simply, is a *way* to write code. The notion of programming idioms
260260
is discussed amply at `c2 <http://c2.com/cgi/wiki?ProgrammingIdiom>`_ and at `Stack Overflow <http://stackoverflow.com/questions/302459/what-is-a-programming-idiom>`_.
261261

262262
Idiomatic Python code is often referred to as being *Pythonic*.

docs/writing/tests.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ py.test is a no-boilerplate alternative to Python's standard unittest module.
146146

147147
$ pip install pytest
148148

149-
Despite being a fully-featured and extensible test tool it boasts a simple
149+
Despite being a fully-featured and extensible test tool, it boasts a simple
150150
syntax. Creating a test suite is as easy as writing a module with a couple of
151151
functions
152152

0 commit comments

Comments
 (0)