From a79d4432a7cb81b4b63826379933f01a02662ce9 Mon Sep 17 00:00:00 2001 From: Marshall Bowers Date: Wed, 28 Aug 2024 19:25:19 -0400 Subject: [PATCH] Don't use a mix of tabs and spaces (#17045) This PR fixes some spots in the docs and the `install.sh` script that were using a mix of tabs and spaces. We should just be using spaces. Release Notes: - N/A --- docs/src/languages/luau.md | 18 +++++++++--------- script/install.sh | 6 +++--- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/docs/src/languages/luau.md b/docs/src/languages/luau.md index ff9efc3c507834ccc458617f5baa6282ac488706..c7abd0cae95514faf9ec6aa97edd106200904a19 100644 --- a/docs/src/languages/luau.md +++ b/docs/src/languages/luau.md @@ -29,13 +29,13 @@ Then add the following to your Zed `settings.json`: ```json "languages": { - "Luau": { - "formatter": { - "external": { - "command": "stylua", - "arguments": ["-"] - } - } - } - } + "Luau": { + "formatter": { + "external": { + "command": "stylua", + "arguments": ["-"] + } + } + } + } ``` diff --git a/script/install.sh b/script/install.sh index ddee254881c19bf917140c4f91b636093b42e405..daeaec181f7b815117d92c9bfd60d65f809f54c0 100755 --- a/script/install.sh +++ b/script/install.sh @@ -39,11 +39,11 @@ main() { } elif which wget >/dev/null 2>&1; then curl () { - wget -O- "$@" + wget -O- "$@" } else - echo "Could not find 'curl' or 'wget' in your path" - exit 1 + echo "Could not find 'curl' or 'wget' in your path" + exit 1 fi "$platform" "$@"