From ef9fb2fbbd314fb02e9495d29f9b882073ff6ad8 Mon Sep 17 00:00:00 2001 From: boneyard93501 <4523011+boneyard93501@users.noreply.github.com> Date: Thu, 23 Feb 2023 02:58:40 -0600 Subject: [PATCH] chore(docs): Fix spelling --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f35f05dd..13f44efe 100644 --- a/README.md +++ b/README.md @@ -74,11 +74,11 @@ Once you've added the client, you can compile [Aqua](https://github.com/fluencel 3. Put `*.aqua` files in that directory. -4. Add a directory for compiled Aqua files inside you sources. For example, if your app source is located in the `src` directory, you can create `src/_aqua`. +4. Add a directory for compiled Aqua files inside your sources. For example, if your app source is located in the `src` directory, you can create `src/_aqua`. 5. To compile Aqua code once, run `npx fluence aqua -i ./_aqua -o ./src/_aqua/`. To watch the changes and to recompile on the fly, add the `-w` flag: `npx fluence aqua -w -i ./_aqua -o ./src/_aqua/`. - **A hint**: it might be a good idea to add these scripts to your `package.json` file. + **Hint**: it might be a good idea to add these scripts to your `package.json` file. For example, you project structure could look like this: ```