Don't use a mix of tabs and spaces (#17045)

Marshall Bowers created

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

Change summary

docs/src/languages/luau.md | 18 +++++++++---------
script/install.sh          |  6 +++---
2 files changed, 12 insertions(+), 12 deletions(-)

Detailed changes

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": ["-"]
+        }
+      }
+    }
+  }
 ```

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" "$@"