From cc6f09f3f6e2a51618da8e7fe37688decb7cefb9 Mon Sep 17 00:00:00 2001 From: Simon McVittie Date: Wed, 24 Jul 2024 09:14:20 +0000 Subject: [PATCH] docs: Clarify an example in GObject concepts.md Continue the existing example to make things more joined up and concrete. --- docs/reference/gobject/concepts.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/reference/gobject/concepts.md b/docs/reference/gobject/concepts.md index d9faec9ab..b017b58c2 100644 --- a/docs/reference/gobject/concepts.md +++ b/docs/reference/gobject/concepts.md @@ -343,7 +343,7 @@ new types which are to be exported in a header file: named ‘save’ on an instance of object type ‘file’, call `file_save`. - Use prefixing to avoid namespace conflicts with other projects. If your library (or application) is named `Viewer`, prefix all your function names - with `viewer_`. For example: `viewer_object_method`. + with `viewer_`. For example: `viewer_file_save`. - The prefix should be a single term, i.e. should not contain any capital letters after the first letter. For example, `Exampleprefix` rather than `ExamplePrefix`.