summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Boles <dboles.src@gmail.com>2023-04-30 16:55:31 +0100
committerDaniel Boles <dboles.src@gmail.com>2023-04-30 16:55:31 +0100
commit060992aeba64272214ccbaf50232e970a6fca402 (patch)
tree483c300165ac5473c9e44192a9d5a5aa298c23f9
parent2c15d563e236c8ddbbe450179656bbcb15edf30e (diff)
downloadgtk+-060992aeba64272214ccbaf50232e970a6fca402.tar.gz
migrating-3to4: Fix unescaped ptr * used as italic
-rw-r--r--docs/reference/gtk/migrating-3to4.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/reference/gtk/migrating-3to4.md b/docs/reference/gtk/migrating-3to4.md
index 62f7f083da..05c99fa2ff 100644
--- a/docs/reference/gtk/migrating-3to4.md
+++ b/docs/reference/gtk/migrating-3to4.md
@@ -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