From cae84fcdd581b9b241e01af7856ac810c6b3e088 Mon Sep 17 00:00:00 2001 From: Stefano Zacchiroli <zack@upsilon.cc> Date: Mon, 16 Sep 2019 17:19:12 +0200 Subject: [PATCH] fix typos in docstrings and docs courtesy of codespell --- docs/getting-started.rst | 6 +++--- swh/deposit/cli/admin.py | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/getting-started.rst b/docs/getting-started.rst index 33f1749b..5e4556b1 100644 --- a/docs/getting-started.rst +++ b/docs/getting-started.rst @@ -88,7 +88,7 @@ minimal deposit .. code:: shell $ swh deposit upload --username name --password secret \ - --author "some@noone" --author "second@noone" \ + --author "some@nobody" --author "second@nobody" \ --name 'je-suis-gpl' \ --archive je-suis-gpl.tgz @@ -97,7 +97,7 @@ with client's external identifier (``slug``) .. code:: shell $ swh deposit upload --username name --password secret \ - --author "some@noone" \ + --author "some@nobody" \ --name 'je-suis-gpl' \ --archive je-suis-gpl.tgz \ --slug je-suis-gpl @@ -107,7 +107,7 @@ to a specific client's collection .. code:: shell $ swh deposit upload --username name --password secret \ - --author "some@noone" \ + --author "some@nobody" \ --name 'je-suis-gpl' \ --archive je-suis-gpl.tgz \ --collection 'second-collection' diff --git a/swh/deposit/cli/admin.py b/swh/deposit/cli/admin.py index 364ee32e..100a7ef1 100644 --- a/swh/deposit/cli/admin.py +++ b/swh/deposit/cli/admin.py @@ -73,7 +73,7 @@ def user_create(ctx, username, password, firstname, lastname, email, If the collection does not exist, the collection is then created alongside. - The password is stored encrypted using django's utilies. + The password is stored encrypted using django's utilities. """ # to avoid loading too early django namespaces -- GitLab