summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Fikl <alexfikl@gmail.com>2024-05-02 20:27:23 +0300
committerAlex Fikl <alexfikl@gmail.com>2024-05-02 20:39:35 +0300
commit380a53968a60a798749590244380d00c52fb7fc7 (patch)
treea007e759ee08c9d7336fcdc4d0531174d594c199
parentcbe0b34a3df01ba97c4ef0670b28332760587169 (diff)
fix bibtex capitalization
-rw-r--r--papis/bibtex.py4
-rw-r--r--papis/commands/add.py4
2 files changed, 5 insertions, 3 deletions
diff --git a/papis/bibtex.py b/papis/bibtex.py
index 455c2fd7..bf5d3ead 100644
--- a/papis/bibtex.py
+++ b/papis/bibtex.py
@@ -303,7 +303,9 @@ def exporter(documents: List[papis.document.Document]) -> str:
class Importer(papis.importer.Importer):
"""
Importer that parses BibTeX files or strings.
- Here, `uri` can either be a bibtex string, or point to a bibtex file or http/s url
+
+ Here, `uri` can either be a BibTeX string, local BibTeX file or a remote URL
+ (with a HTTP or HTTPS protocol).
"""
def __init__(self, **kwargs: Any) -> None:
diff --git a/papis/commands/add.py b/papis/commands/add.py
index ba1dadf1..41307560 100644
--- a/papis/commands/add.py
+++ b/papis/commands/add.py
@@ -81,8 +81,8 @@ Examples
in the document's main folder with a list of citations. You can check out
the ``papis citations`` command for more advanced usage.
-- Bibtex can be imported directly as a string, or read from a file or URL.
- The following all work:
+- BibTeX can be imported directly as a string, or read from a local file or
+ from a remote URL. The following all work:
.. code:: sh