From ed2c8a676b60768411a1358edd23111412587988 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Guido=20G=C3=BCnther?= Date: Sat, 23 Aug 2025 10:42:12 +0200 Subject: [PATCH 1/3] doc: Add a slug MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Otherwise it appears in the docs as "Unknown document" Signed-off-by: Guido Günther Part-of: --- doc/gettingstarted.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/doc/gettingstarted.md b/doc/gettingstarted.md index 3a19f3afd..0e76bdb0f 100644 --- a/doc/gettingstarted.md +++ b/doc/gettingstarted.md @@ -1,3 +1,6 @@ +Title: Getting started with Phoc development +Slug: gettingstarted + # Getting started with Phoc development ## Overview -- GitLab From 19d5718694f45318cde7832eaf95b8a7ee41ff72 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Guido=20G=C3=BCnther?= Date: Sat, 23 Aug 2025 10:45:14 +0200 Subject: [PATCH 2/3] doc: Fix typo MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Gbp-Dch: Ignore Signed-off-by: Guido Günther Part-of: --- doc/gettingstarted.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/gettingstarted.md b/doc/gettingstarted.md index 0e76bdb0f..5b8eebf03 100644 --- a/doc/gettingstarted.md +++ b/doc/gettingstarted.md @@ -69,7 +69,7 @@ directly but via a small shell wrapper at `_build/data/phoc-dev` which is anothe good place to make some temporary changes like setting `PHOC_DEBUG` or `G_MESSAGES_DEBUG`. -To start an appplication in the running phoc run: +To start an application in the running phoc run: ```sh WAYLAND_DISPLAY=wayland-0 gnome-terminal -- GitLab From 4681bb2536f73eae639f8f04bc71fa3d69995235 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Guido=20G=C3=BCnther?= Date: Sat, 23 Aug 2025 10:46:01 +0200 Subject: [PATCH 3/3] server: Fix typos in doc strings MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Gbp-Dch: Ignore Signed-off-by: Guido Günther Part-of: --- src/server.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/server.c b/src/server.c index 3f6e370d8..1c54eb2fb 100644 --- a/src/server.c +++ b/src/server.c @@ -657,7 +657,7 @@ phoc_server_get_renderer (PhocServer *self) * phoc_server_get_desktop: * @self: The server * - * Get's the desktop singleton + * Gets the desktop singleton * * Returns: (transfer none): The desktop */ @@ -797,7 +797,7 @@ phoc_server_get_log_domains (PhocServer *self) * phoc_server_get_last_active_seat: * @self: The server * - * Get's the last active seat. + * Gets the last active seat. * * Returns: (transfer none): The last active seat. */ -- GitLab