From b80d40c287789ec0cb430842923a0254c86a6150 Mon Sep 17 00:00:00 2001 From: Elliott Sales de Andrade Date: Tue, 2 May 2017 20:55:49 -0400 Subject: doc: Capitalize things more consistently. Upper or lower case depending on the official spelling, or the more consistent usage. --- docs/markdown/Tutorial.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'docs/markdown/Tutorial.md') diff --git a/docs/markdown/Tutorial.md b/docs/markdown/Tutorial.md index ae2e38165..8d0d137d0 100644 --- a/docs/markdown/Tutorial.md +++ b/docs/markdown/Tutorial.md @@ -66,7 +66,7 @@ This produces the expected output. Adding dependencies ----- -Just printing text is a bit old fashioned. Let's update our program to create a graphical window instead. We'll use the [GTK+](https://gtk.org) widget toolkit. First we edit the main file to use Gtk. The new version looks like this. +Just printing text is a bit old fashioned. Let's update our program to create a graphical window instead. We'll use the [GTK+](https://gtk.org) widget toolkit. First we edit the main file to use GTK+. The new version looks like this. ```c #include @@ -82,7 +82,7 @@ int main(int argc, char **argv) { } ``` -Then we edit the Meson file, instructing it to find and use the Gtk libraries. +Then we edit the Meson file, instructing it to find and use the GTK+ libraries. ```meson project('tutorial', 'c') @@ -120,4 +120,4 @@ $ ./demo This creates the following GUI application. -![Gtk sample application screenshot](images/gtksample.png) +![GTK+ sample application screenshot](images/gtksample.png) -- cgit v1.2.3