summaryrefslogtreecommitdiff
path: root/docs/CODING-STYLE.md
diff options
context:
space:
mode:
authorBenjamin Otte <otte@redhat.com>2020-07-24 22:25:56 +0200
committerBenjamin Otte <otte@redhat.com>2020-07-25 00:47:36 +0200
commit556997f9df3b771733fc49a02d5424aee276e29f (patch)
tree497917f020af130413e0a429510c24fbe5eade7d /docs/CODING-STYLE.md
parentd375dce9f52fd9830069a6fd9287abde93d3f24b (diff)
downloadgtk+-556997f9df3b771733fc49a02d5424aee276e29f.tar.gz
Replace "gfloat" with "float"
Diffstat (limited to 'docs/CODING-STYLE.md')
-rw-r--r--docs/CODING-STYLE.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/CODING-STYLE.md b/docs/CODING-STYLE.md
index e0f3ca13ca..8c0368e1f0 100644
--- a/docs/CODING-STYLE.md
+++ b/docs/CODING-STYLE.md
@@ -484,8 +484,8 @@ It is also possible to align the columns to the next tab:
```c
void gtk_type_set_prop (GtkType *type,
- gfloat value);
- gfloat gtk_type_get_prop (GtkType *type);
+ float value);
+ float gtk_type_get_prop (GtkType *type);
int gtk_type_update_foobar (GtkType *type);
```