From 6b83a1fcaad349b5c59f76e9af748225e73e6b0f Mon Sep 17 00:00:00 2001 From: August Miller Date: Mon, 8 Jan 2024 07:14:35 -0800 Subject: [PATCH] Lint --- docs/4.x/directory-structure.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/4.x/directory-structure.md b/docs/4.x/directory-structure.md index 0ed3a2c5c..90c7fd5f0 100644 --- a/docs/4.x/directory-structure.md +++ b/docs/4.x/directory-structure.md @@ -139,9 +139,9 @@ Multi-site projects often make use of [static translations](./sites.md#static-me ### `package.json` -Projects that use Node will typically contain `package.json` and `package-lock.json` files, as well as a `node_modules/` directory. Craft does not interact with these files, but they often contain information about how the front-end of your site works. +Projects that use Node.js will typically contain `package.json` and `package-lock.json` files, as well as a `node_modules/` directory. Craft does not interact with these files, but they often contain information about how the front-end of your site works. -Oftentimes, a Node “build step” will output files that are then loaded by a user’s browser—those should be written to the web root so they can be directly requested via HTTP. +Oftentimes, a Node.js “build step” will output files that are then loaded by a user’s browser—those should be written to the web root so they can be directly requested via HTTP. ### `craft.bat` @@ -153,4 +153,4 @@ A `Dockerfile` or `docker-compose.yml` in your project root suggests that it is ### IDE Configuration -Some editors write configuration to a file or folder within your project—for example, PHPStorm will create a `.idea/` directory; Visual Studio Code uses `.vscode/`. Coordinate with your team about which tools are valuable to your process, and commit anything that supports it. +Some editors write configuration to a file or folder within your project—for example, PhpStorm will create a `.idea/` directory; Visual Studio Code uses `.vscode/`. Coordinate with your team about which tools are valuable to your process, and commit anything that supports it.