From 04af34f7311d994c755e7dac5f568f1f5c70cdb1 Mon Sep 17 00:00:00 2001 From: FrogTheFrog Date: Fri, 26 Jul 2024 17:05:42 +0300 Subject: [PATCH] ffs --- src/display_device.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/display_device.h b/src/display_device.h index f17b7aa5e78..c436bfa21f0 100644 --- a/src/display_device.h +++ b/src/display_device.h @@ -29,7 +29,7 @@ namespace display_device { * * @examples * session_t& session { session_t::get() }; - * @end_examples + * @examples_end */ [[nodiscard]] static session_t & get(); @@ -40,7 +40,7 @@ namespace display_device { * * @examples * const auto session_guard { session_t::init() }; - * @end_examples + * @examples_end */ [[nodiscard]] static std::unique_ptr init(); @@ -54,7 +54,7 @@ namespace display_device { * session_t& session { session_t::get() }; * const auto mapped_name_config { session.get_display_name(config::video.output_name) }; * const auto mapped_name_custom { session.get_display_name("{some-device-id}") }; - * @end_examples + * @examples_end */ [[nodiscard]] std::string map_output_name(const std::string &output_name) const;