Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/sphinx-doc/sphinx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'sphinx/util/stemmer')
-rw-r--r--sphinx/util/stemmer/__init__.py3
-rw-r--r--sphinx/util/stemmer/porter.py3
2 files changed, 2 insertions, 4 deletions
diff --git a/sphinx/util/stemmer/__init__.py b/sphinx/util/stemmer/__init__.py
index 0332e3f3b..d7576a94e 100644
--- a/sphinx/util/stemmer/__init__.py
+++ b/sphinx/util/stemmer/__init__.py
@@ -1,5 +1,4 @@
-"""
- Word stemming utilities for Sphinx.
+"""Word stemming utilities for Sphinx.
:copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS.
:license: BSD, see LICENSE for details.
diff --git a/sphinx/util/stemmer/porter.py b/sphinx/util/stemmer/porter.py
index e26431646..6068e76ab 100644
--- a/sphinx/util/stemmer/porter.py
+++ b/sphinx/util/stemmer/porter.py
@@ -1,5 +1,4 @@
-"""
- Porter Stemming Algorithm
+"""Porter Stemming Algorithm
This is the Porter stemming algorithm, ported to Python from the
version coded up in ANSI C by the author. It may be be regarded