summary refs log tree commit diff
path: root/src/libnmt-newt
diff options
context:
space:
mode:
Diffstat (limited to 'src/libnmt-newt')
-rw-r--r--src/libnmt-newt/nmt-newt-form.c4
-rw-r--r--src/libnmt-newt/nmt-newt-listbox.c2
-rw-r--r--src/libnmt-newt/nmt-newt-widget.c2
3 files changed, 4 insertions, 4 deletions
diff --git a/src/libnmt-newt/nmt-newt-form.c b/src/libnmt-newt/nmt-newt-form.c
index de80b42a..6e0589cc 100644
--- a/src/libnmt-newt/nmt-newt-form.c
+++ b/src/libnmt-newt/nmt-newt-form.c
@@ -70,7 +70,7 @@ static void nmt_newt_form_redraw(NmtNewtForm *form);
 
 /**
  * nmt_newt_form_new:
- * @title: (allow-none): the form title
+ * @title: (nullable): the form title
  *
  * Creates a new form, which will be shown centered on the screen.
  * Compare nmt_newt_form_new_fullscreen(). You can also position a
@@ -91,7 +91,7 @@ nmt_newt_form_new(const char *title)
 
 /**
  * nmt_newt_form_new_fullscreen:
- * @title: (allow-none): the form title
+ * @title: (nullable): the form title
  *
  * Creates a new fullscreen form. Compare nmt_newt_form_new().
  *
diff --git a/src/libnmt-newt/nmt-newt-listbox.c b/src/libnmt-newt/nmt-newt-listbox.c
index 96e04c15..0a27e358 100644
--- a/src/libnmt-newt/nmt-newt-listbox.c
+++ b/src/libnmt-newt/nmt-newt-listbox.c
@@ -81,7 +81,7 @@ nmt_newt_listbox_new(int height, NmtNewtListboxFlags flags)
  * nmt_newt_listbox_append:
  * @listbox: an #NmtNewtListbox
  * @entry: the text for the new row
- * @key: (allow-none): the key associated with @entry
+ * @key: (nullable): the key associated with @entry
  *
  * Adds a row to @listbox.
  */
diff --git a/src/libnmt-newt/nmt-newt-widget.c b/src/libnmt-newt/nmt-newt-widget.c
index 8b5647aa..2f17d8f2 100644
--- a/src/libnmt-newt/nmt-newt-widget.c
+++ b/src/libnmt-newt/nmt-newt-widget.c
@@ -171,7 +171,7 @@ nmt_newt_widget_get_components(NmtNewtWidget *widget)
  *
  * Finds the widget inside @widget that owns @co.
  *
- * Return value: @co's owner, or %NULL if it was not found.
+ * Returns: @co's owner, or %NULL if it was not found.
  */
 NmtNewtWidget *
 nmt_newt_widget_find_component(NmtNewtWidget *widget, newtComponent co)