diff options
author | Benjamin Otte <otte@redhat.com> | 2020-07-24 22:25:56 +0200 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2020-07-25 00:47:36 +0200 |
commit | 556997f9df3b771733fc49a02d5424aee276e29f (patch) | |
tree | 497917f020af130413e0a429510c24fbe5eade7d /docs/CODING-STYLE.md | |
parent | d375dce9f52fd9830069a6fd9287abde93d3f24b (diff) | |
download | gtk+-556997f9df3b771733fc49a02d5424aee276e29f.tar.gz |
Replace "gfloat" with "float"
Diffstat (limited to 'docs/CODING-STYLE.md')
-rw-r--r-- | docs/CODING-STYLE.md | 4 |
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); ``` |