summaryrefslogtreecommitdiff
path: root/Userland/Demos
diff options
context:
space:
mode:
authorTim Ledbetter <timledbetter@gmail.com>2023-04-08 10:48:22 +0100
committerAndrew Kaster <andrewdkaster@gmail.com>2023-04-25 02:16:48 -0600
commit05c8aa71f25c3d58f0037db04216a24e86b13903 (patch)
tree7fd655d2ba935d4f66ce12e339a4fbf3b5f8432d /Userland/Demos
parent9d30eb4b34ddbd17d666a9ac50e654e484125970 (diff)
downloadserenity-05c8aa71f25c3d58f0037db04216a24e86b13903.zip
Applications: Update man page links for applications
This commit updates all application man page links to point to the Applications subdirectory.
Diffstat (limited to 'Userland/Demos')
-rw-r--r--Userland/Demos/Eyes/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Demos/Eyes/main.cpp b/Userland/Demos/Eyes/main.cpp
index 053a6640d8..2fb554ca7a 100644
--- a/Userland/Demos/Eyes/main.cpp
+++ b/Userland/Demos/Eyes/main.cpp
@@ -92,7 +92,7 @@ ErrorOr<int> serenity_main(Main::Arguments arguments)
auto help_menu = TRY(window->try_add_menu("&Help"_short_string));
TRY(help_menu->try_add_action(GUI::CommonActions::make_command_palette_action(window)));
TRY(help_menu->try_add_action(GUI::CommonActions::make_help_action([](auto&) {
- Desktop::Launcher::open(URL::create_with_file_scheme("/usr/share/man/man1/Eyes.md"), "/bin/Help");
+ Desktop::Launcher::open(URL::create_with_file_scheme("/usr/share/man/man1/Applications/Eyes.md"), "/bin/Help");
})));
TRY(help_menu->try_add_action(GUI::CommonActions::make_about_action("Eyes Demo", app_icon, window)));