summaryrefslogtreecommitdiff
path: root/docs/markdown/Tutorial.md
diff options
context:
space:
mode:
authorElliott Sales de Andrade <quantum.analyst@gmail.com>2017-05-02 20:55:49 -0400
committerElliott Sales de Andrade <quantum.analyst@gmail.com>2017-05-03 16:20:51 -0400
commitb80d40c287789ec0cb430842923a0254c86a6150 (patch)
tree1959e740245042340aff6d6ea96f80d8a75c95f1 /docs/markdown/Tutorial.md
parent492e281c0e5a4ff01e15af220bff21acaaa7f90d (diff)
downloadmeson-b80d40c287789ec0cb430842923a0254c86a6150.tar.gz
doc: Capitalize things more consistently.
Upper or lower case depending on the official spelling, or the more consistent usage.
Diffstat (limited to 'docs/markdown/Tutorial.md')
-rw-r--r--docs/markdown/Tutorial.md6
1 files changed, 3 insertions, 3 deletions
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<gtk/gtk.h>
@@ -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)