From 0351e67493a0fc71e789bd5cc3480232d49925a3 Mon Sep 17 00:00:00 2001 From: david-swift Date: Wed, 13 Sep 2023 06:30:47 +0200 Subject: [PATCH] Fix typos --- CONTRIBUTING.md | 2 +- README.md | 2 +- user-manual/Basics/CreatingViews.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 299a7c3..fad0494 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -23,7 +23,7 @@ Open the project folder in GNOME Builder, Xcode or another IDE. ### 3. Understand the Project Structure - The `README.md` file contains a description of the app or package. -- The `Contributors.md` file contains the names or user names of all the contributors with a link to their GitHub profile. +- The `Contributors.md` file contains the names or usernames of all the contributors with a link to their GitHub profile. - The `LICENSE.md` contains an GPL-3.0 license. - `CONTRIBUTING.md` is this file. - Directory `Icons` that contains PNG and PXD (Pixelmator Pro) files for the images used in the app and guides. diff --git a/README.md b/README.md index d7e9cdd..4f3f1e1 100644 --- a/README.md +++ b/README.md @@ -56,7 +56,7 @@ Creates a simple counter view: ## Goals -_Adwaita_’s main goal is to provide an easy-to-use interface for creating GNOME apps. The back end should stay as simple as possible, while not limiting the possibilities there are with [Libadwaita][6] and [GTK][7]. +_Adwaita_’s main goal is to provide an easy-to-use interface for creating GNOME apps. The backend should stay as simple as possible, while not limiting the possibilities there are with [Libadwaita][6] and [GTK][7]. If you want to use _Adwaita_ in a project, but there are widgets missing, open an [issue on GitHub][8]. diff --git a/user-manual/Basics/CreatingViews.md b/user-manual/Basics/CreatingViews.md index 49add0d..e31697b 100644 --- a/user-manual/Basics/CreatingViews.md +++ b/user-manual/Basics/CreatingViews.md @@ -6,7 +6,7 @@ This is a beginner tutorial. We will create a simple "Hello, world!" app using _ 1. Open your terminal client and navigate to a directory you want to create the package in (e.g. `~/Documents/`). 2. Create a new folder for the package using `mkdir HelloWorld`. 3. Enter the newly created folder using `cd HelloWorld`. -4. Run `swift package init —type executable` for creating a new Swift package. +4. Run `swift package init --type executable` for creating a new Swift package. 5. Open the Swift package. If you are using GNOME Builder, click on `Select a Folder…` in the view that appears after opening Builder and open the `HelloWorld` folder. ## Add the Dependency