diff options
Diffstat (limited to 'docs/markdown/Tutorial.md')
| -rw-r--r-- | docs/markdown/Tutorial.md | 6 |
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. - + |
