summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCorey Berla <corey@berla.me>2023-01-13 15:14:13 -0800
committerCorey Berla <corey@berla.me>2023-01-13 15:14:13 -0800
commitb4932ce351c36d2ab6e6fa0340967e981d67e52e (patch)
tree0021453153c8d6c93f0cc4647030892eb791523b
parenta061d354c7d677d7c8e8484e0a37a4917b3dc25a (diff)
downloadgtksourceview-b4932ce351c36d2ab6e6fa0340967e981d67e52e.tar.gz
docs: Fix dependency names
Dependency names need to match the namespace name exactly (including capitalization) otherwise they won't be shown as dependencies.
-rw-r--r--docs/GtkSource.toml.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/GtkSource.toml.in b/docs/GtkSource.toml.in
index 8ea57b2b..18677507 100644
--- a/docs/GtkSource.toml.in
+++ b/docs/GtkSource.toml.in
@@ -23,7 +23,7 @@ search_index = true
docs_url = "https://docs.gtk.org/glib/"
[dependencies."Gio-2.0"]
- name = "GIO"
+ name = "Gio"
description = "GObject Interfaces and Objects, Networking, IPC, and I/O"
docs_url = "https://docs.gtk.org/gio/"
@@ -38,12 +38,12 @@ search_index = true
docs_url = "https://docs.gtk.org/gdk-pixbuf/"
[dependencies."Gdk-4.0"]
- name = "GDK"
+ name = "Gdk"
description = "The GTK windowing system abstraction"
docs_url = "https://docs.gtk.org/gdk4/"
[dependencies."Gtk-4.0"]
- name = "GTK"
+ name = "Gtk"
description = "The GTK toolkit"
docs_url = "https://docs.gtk.org/gtk4/"