mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-08-01 23:13:40 +02:00
docs: let go of *
Since we are no longer using sgml mode, using /* */ to escape block comments inside examples does not work anymore. Switch to using line comments with //
This commit is contained in:
@@ -106,13 +106,12 @@ g_cancellable_class_init (GCancellableClass *klass)
|
||||
*
|
||||
* An example of how to us this:
|
||||
* |[<!-- language="C" -->
|
||||
* /* Make sure we don't do unnecessary work if already cancelled */
|
||||
* // Make sure we don't do unnecessary work if already cancelled
|
||||
* if (g_cancellable_set_error_if_cancelled (cancellable, error))
|
||||
* return;
|
||||
*
|
||||
* /* Set up all the data needed to be able to
|
||||
* * handle cancellation of the operation
|
||||
* */
|
||||
* // Set up all the data needed to be able to handle cancellation
|
||||
* // of the operation
|
||||
* my_data = my_data_new (...);
|
||||
*
|
||||
* id = 0;
|
||||
@@ -121,13 +120,12 @@ g_cancellable_class_init (GCancellableClass *klass)
|
||||
* G_CALLBACK (cancelled_handler)
|
||||
* data, NULL);
|
||||
*
|
||||
* /* cancellable operation here... */
|
||||
* // cancellable operation here...
|
||||
*
|
||||
* g_cancellable_disconnect (cancellable, id);
|
||||
*
|
||||
* /* cancelled_handler is never called after this,
|
||||
* * it is now safe to free the data
|
||||
* */
|
||||
* // cancelled_handler is never called after this, it is now safe
|
||||
* // to free the data
|
||||
* my_data_free (my_data);
|
||||
* ]|
|
||||
*
|
||||
|
Reference in New Issue
Block a user