aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2016-06-02 22:24:22 -0700
committerPaul Kehrer <paul.l.kehrer@gmail.com>2016-06-02 22:24:22 -0700
commit0c11d0427e12557fa41cdfbc00f6a83a36c58af7 (patch)
tree502887b370573178237afb3c4a246654e2457c8b /docs
parente295f3ab615775c3549b7bc2e051af5cff801619 (diff)
downloadcryptography-0c11d0427e12557fa41cdfbc00f6a83a36c58af7.tar.gz
cryptography-0c11d0427e12557fa41cdfbc00f6a83a36c58af7.tar.bz2
cryptography-0c11d0427e12557fa41cdfbc00f6a83a36c58af7.zip
Random grammar stuff (#2955)
Diffstat (limited to 'docs')
-rw-r--r--docs/development/getting-started.rst2
-rw-r--r--docs/development/submitting-patches.rst2
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/development/getting-started.rst b/docs/development/getting-started.rst
index 0bbb18ce..3ad9fe82 100644
--- a/docs/development/getting-started.rst
+++ b/docs/development/getting-started.rst
@@ -27,7 +27,7 @@ You must have installed `OpenSSL`_ via `Homebrew`_ or `MacPorts`_ and must set
``CFLAGS`` and ``LDFLAGS`` environment variables before installing the
``dev-requirements.txt`` otherwise pip will fail with include errors.
-For example with `Homebrew`_:
+For example, with `Homebrew`_:
.. code-block:: console
diff --git a/docs/development/submitting-patches.rst b/docs/development/submitting-patches.rst
index 563bc81f..475e7037 100644
--- a/docs/development/submitting-patches.rst
+++ b/docs/development/submitting-patches.rst
@@ -48,7 +48,7 @@ API considerations
Most projects' APIs are designed with a philosophy of "make easy things easy,
and make hard things possible". One of the perils of writing cryptographic code
is that secure code looks just like insecure code, and its results are almost
-always indistinguishable. As a result ``cryptography`` has, as a design
+always indistinguishable. As a result, ``cryptography`` has, as a design
philosophy: "make it hard to do insecure things". Here are a few strategies for
API design that should be both followed, and should inspire other API choices: