1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
|
From: Sergio Durigan Junior <sergiodj@sergiodj.net>
Date: Tue, 8 Aug 2017 16:37:57 -0400
Subject: Fix typos on manpanges/docs.
---
NEWS | 2 +-
doc/flask_fas.rst | 2 +-
doc/flask_fas_openid.rst | 2 +-
fedora/tg2/templates/mako/__init__.py | 2 +-
4 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/NEWS b/NEWS
index 23ea4a2..897774d 100644
--- a/NEWS
+++ b/NEWS
@@ -714,7 +714,7 @@ Incompatibilities
=================
* Removal of camelCase. Rename keyword arguments and public instance variables:
* client.BaseClient
- *Note* that changes to this class propogate out to the same variable in
+ *Note* that changes to this class propagate out to the same variable in
derived classes like fas2.AccountSystem and the BaseClient used in
JsonFasIdentity.
* __init__(): baseURL => base_url
diff --git a/doc/flask_fas.rst b/doc/flask_fas.rst
index ba9f4bd..9a6fca0 100644
--- a/doc/flask_fas.rst
+++ b/doc/flask_fas.rst
@@ -98,7 +98,7 @@ authentication::
fas = FAS(app)
# Application configuration
- # SECRET_KEY is necessary to CSRF in WTForms. It nees to be secret to
+ # SECRET_KEY is necessary to CSRF in WTForms. It needs to be secret to
# make the csrf tokens unguessable but if you have multiple servers behind
# a load balancer, the key needs to be the same on each.
app.config['SECRET_KEY'] = 'change me!'
diff --git a/doc/flask_fas_openid.rst b/doc/flask_fas_openid.rst
index 2725e8c..90fb8b1 100644
--- a/doc/flask_fas_openid.rst
+++ b/doc/flask_fas_openid.rst
@@ -80,7 +80,7 @@ authentication::
fas = FAS(app)
# Application configuration
- # SECRET_KEY is necessary for the Flask session system. It nees to be secret to
+ # SECRET_KEY is necessary for the Flask session system. It needs to be secret to
# make the sessions secret but if you have multiple servers behind
# a load balancer, the key needs to be the same on each.
app.config['SECRET_KEY'] = 'change me!'
diff --git a/fedora/tg2/templates/mako/__init__.py b/fedora/tg2/templates/mako/__init__.py
index 759ca5d..383d16d 100644
--- a/fedora/tg2/templates/mako/__init__.py
+++ b/fedora/tg2/templates/mako/__init__.py
@@ -66,7 +66,7 @@ Include this using::
A function to add global variables to a page. Typically, you'd include
this in your :file:`master.mak` template and let the javascript variables
-defined there propogate to every page on your site (since they all should
+defined there propagate to every page on your site (since they all should
inherit from :file:`master.mak`). This adds the following variables in the
fedora namespace for other scripts to access:
|