improve bloom filter on send
[platform/upstream/glib.git] / gio / gapplicationcommandline.c
index 9b5d174..d5e508a 100644 (file)
  * {
  *   GApplicationCommandLine *cmdline = data;
  *
- *   /* do the heavy lifting in an idle */
+ *   // do the heavy lifting in an idle
  *
  *   g_application_command_line_set_exit_status (cmdline, 0);
- *   g_object_unref (cmdline); /* this releases the application */
+ *   g_object_unref (cmdline); // this releases the application
  *
  *   return G_SOURCE_REMOVE;
  * }
  * command_line (GApplication            *application,
  *               GApplicationCommandLine *cmdline)
  * {
- *   /* keep the application running until we are done with this commandline */
+ *   // keep the application running until we are done with this commandline
  *   g_application_hold (application);
  *
  *   g_object_set_data_full (G_OBJECT (cmdline),
@@ -780,7 +780,7 @@ g_application_command_line_get_exit_status (GApplicationCommandLine *cmdline)
  *
  * For local invocation, it will be %NULL.
  *
- * Returns: (allow-none): the platform data, or %NULL
+ * Returns: (nullable): the platform data, or %NULL
  *
  * Since: 2.28
  **/