summaryrefslogtreecommitdiff
path: root/docs/website/writingbindableapis.rst
diff options
context:
space:
mode:
authorEmmanuele Bassi <ebassi@gnome.org>2021-08-05 13:45:40 +0100
committerEmmanuele Bassi <ebassi@gnome.org>2021-08-05 13:45:40 +0100
commit7719bab84deb5cf881c939444db8676fff7fa6f3 (patch)
tree3d10c61b852efad0c8b2b2ca8a61d7b90dcd280f /docs/website/writingbindableapis.rst
parentc691d9f03b93baddcd1f4e979a97e8d72a27d893 (diff)
downloadgobject-introspection-7719bab84deb5cf881c939444db8676fff7fa6f3.tar.gz
Update the developer.gnome.org URLs
The GNOME developers documentation website has been updated, and we're in the process of moving API references elsewhere. The old documentation is still available under developer-old.gnome.org, so let's update the URLs we have in our documentation.
Diffstat (limited to 'docs/website/writingbindableapis.rst')
-rw-r--r--docs/website/writingbindableapis.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/website/writingbindableapis.rst b/docs/website/writingbindableapis.rst
index 70d3bbc7..b9b08941 100644
--- a/docs/website/writingbindableapis.rst
+++ b/docs/website/writingbindableapis.rst
@@ -10,12 +10,12 @@ Structures with custom memory management
Avoid creating C structures with custom memory management unless they are
registered as a `boxed type
-<https://developer.gnome.org/gobject/unstable/gobject-Boxed-Types.html>`__.
+<https://developer-old.gnome.org/gobject/stable/gobject-Boxed-Types.html>`__.
If you don't register them as a boxed type bindings will fall back to
simple memory copying, which might not be what you want.
Also consider using a full `GObject
-<https://developer.gnome.org/gobject/unstable/gobject-The-Base-Object-Type.html>`__
+<https://developer-old.gnome.org/gobject/stable/gobject-The-Base-Object-Type.html>`__
as that allows bindings to better integrate those objects with the binding
language, like for example preserve user defined state across language
boundaries.