From 0e1448256ab9c489e26f3e0293e7e372c1fa2518 Mon Sep 17 00:00:00 2001 From: Lorenzo Cogotti Date: Wed, 17 Aug 2022 15:51:20 +0200 Subject: [PATCH] [README] Improve wording. --- README.md | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 676c00d..f648369 100644 --- a/README.md +++ b/README.md @@ -57,21 +57,20 @@ You should now see a `lib` subdirectory containing the necessary dependencies. } ``` -3. `moonspeak` can now be downloaded directly by `crush` to the project's `lib` directory, - along with any other dependency: +3. `moonspeak` can now be downloaded directly by `crush` to the project's `lib` directory: ```sh lua crush.lua ``` -4. You may now use `moonspeak` in your project by `require()`-ing it. +4. Now `moonspeak` can be `require()`d in your code, like this: ```lua local moonspeak = require 'lib.moonspeak' ``` -5. Any project depending on yours may now fetch your project's dependencies (including `moonspeak`) - automatically using **crush**, following the above procedure. +5. Any project depending on yours will now fetch `moonspeak` + automatically when using `crush`, following the above procedure. ## Documentation