migrating-3to4: Fix unescaped ptr * used as italic
authorDaniel Boles <dboles.src@gmail.com>
Sun, 30 Apr 2023 15:55:31 +0000 (16:55 +0100)
committerDaniel Boles <dboles.src@gmail.com>
Sun, 30 Apr 2023 15:55:31 +0000 (16:55 +0100)
docs/reference/gtk/migrating-3to4.md

index 62f7f083daef7248b2fc574ce0c9880cd09b0743..05c99fa2ffd0f3ec6f2f3b0bd0b7973ed1957413 100644 (file)
@@ -875,10 +875,10 @@ reference.
 ### Adapt to coordinate API changes
 
 A number of APIs that are accepting or returning coordinates have
-been changed from ints to doubles: `gtk_widget_translate_coordinates()`,
+been changed from `int`s to `double`s: `gtk_widget_translate_coordinates()`,
 `gtk_fixed_put()`, `gtk_fixed_move()`. This change is mostly transparent,
 except for cases where out parameters are involved: you need to
-pass double* now, instead of int*.
+pass `double*` now, instead of `int*`.
 
 ### Adapt to GtkStyleContext API changes