From 1747536af64abea92b96893ebc86c19d8ee47057 Mon Sep 17 00:00:00 2001 From: Sergio Durigan Junior Date: Sat, 7 Nov 2020 17:18:24 -0500 Subject: [PATCH] Fix typos Debian's lintian caught these two typos, so I'm submitting them upstream :-). Signed-off-by: Sergio Durigan Junior --- NEWS | 2 +- doc/flask_fas_openid.rst | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/NEWS b/NEWS index cbb81319..9b74691d 100644 --- a/NEWS +++ b/NEWS @@ -754,7 +754,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_openid.rst b/doc/flask_fas_openid.rst index 2725e8c8..90fb8b13 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!'