From 68ecbbc632ba238b5849fcb2d05a70e8c677c625 Mon Sep 17 00:00:00 2001 From: "James D. Mitchell" Date: Mon, 9 Dec 2024 15:35:54 +0000 Subject: [PATCH] Doc tweak --- include/libsemigroups/kambites.hpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/include/libsemigroups/kambites.hpp b/include/libsemigroups/kambites.hpp index af8bfd03b..b391461a9 100644 --- a/include/libsemigroups/kambites.hpp +++ b/include/libsemigroups/kambites.hpp @@ -267,11 +267,11 @@ namespace libsemigroups { template Kambites(congruence_kind knd, Presentation const& p) : Kambites( - knd, - // The lambda in the next line converts, say, chars to - // size_ts, but doesn't convert size_ts to human_readable - // characters. - to_presentation(p, [](auto x) { return x; })) { + knd, + // The lambda in the next line converts, say, chars to + // size_ts, but doesn't convert size_ts to human_readable + // characters. + to_presentation(p, [](auto x) { return x; })) { throw_if_1_sided(knd); } @@ -969,8 +969,8 @@ namespace libsemigroups { // //! \brief Deduction guide. //! - //! Deduction guide to construct a Kambites from a - //! Presentation const reference. + //! Deduction guide to construct a ``Kambites`` from a + //! ``Presentation`` const reference. template Kambites(congruence_kind, Presentation const&) -> Kambites;