branch: elpa/flycheck
commit 57d344d34d247942be3199332a9de5eef4b35c13
Author: Bozhidar Batsov <[email protected]>
Commit: Bozhidar Batsov <[email protected]>
Fix misc doc markup issues
- Fix CHANGES.rst title underline length mismatch
- Add missing blank line after bullet list in maintaining.rst
- Replace Unicode ellipsis with ... in elisp code blocks
- Fix broken URL reference in Jsonnet checker docs
---
CHANGES.rst | 4 ++--
doc/contributor/maintaining.rst | 1 +
doc/developer/developing.rst | 4 ++--
doc/languages.rst | 2 +-
4 files changed, 6 insertions(+), 5 deletions(-)
diff --git a/CHANGES.rst b/CHANGES.rst
index 4ca378b231..200aae2159 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -1,5 +1,5 @@
``master`` (unreleased)
-======================
+=======================
36.0 (2026-02-19)
======================
@@ -249,7 +249,7 @@ Changes
- Fixed an usage of the removed ``flycheck--format-message`` function.
33.0 (2024-02-04)
-=======================
+======================
.. note:: The changelog for this release is incomplete.
diff --git a/doc/contributor/maintaining.rst b/doc/contributor/maintaining.rst
index 3370bf7945..fff5b64715 100644
--- a/doc/contributor/maintaining.rst
+++ b/doc/contributor/maintaining.rst
@@ -189,6 +189,7 @@ extra tooling and some 3rd party services for Flycheck:
configuration.
* `GitHub Actions`_ runs our tests after every push and for every pull request.
It's configured through ``.github/workflows/``.
+
All :ref:`maintainers <flycheck-maintainers>` have administrative access to
these services so in case of an issue just contact them.
diff --git a/doc/developer/developing.rst b/doc/developer/developing.rst
index a9301589e1..d0f4dd8c72 100644
--- a/doc/developer/developing.rst
+++ b/doc/developer/developing.rst
@@ -355,7 +355,7 @@ to have a custom checker in your Emacs configuration
written like this:
(flycheck-define-checker my-foobar-checker
:command ("foobar" source)
- :error-patterns ((error …))
+ :error-patterns ((error ...))
:modes `(foobar-mode ,my-other-foobar-mode))
The idea is that you know statically one mode that you want to use the checker
@@ -375,7 +375,7 @@ follows:
(flycheck-def-executable-var my-foobar-checker "foobar")
(flycheck-define-command-checker 'my-foobar-checker
:command '("foobar" source)
- :error-patterns '((error …))
+ :error-patterns '((error ...))
:modes `(foobar-mode ,my-other-foobar-mode))
Using `flycheck-define-command-checker`, you now need to quote all the list
diff --git a/doc/languages.rst b/doc/languages.rst
index 83c14d36cb..6518b30e0b 100644
--- a/doc/languages.rst
+++ b/doc/languages.rst
@@ -723,7 +723,7 @@ to view the docstring of the syntax checker. Likewise, you
may use
.. syntax-checker:: jsonnet
- Checks `Jsonnet <https://jsonnet.org>`_ with the `jsonnet` binary
published at `https://github.com/google/go-jsonnet`_.
+ Checks `Jsonnet <https://jsonnet.org>`_ with the `jsonnet` binary
published at `go-jsonnet <https://github.com/google/go-jsonnet>`_.
.. defcustom:: flycheck-jsonnet-command-args