diff options
author | Kasper Timm Hansen <kaspth@gmail.com> | 2019-07-17 05:50:18 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-17 05:50:18 +0200 |
commit | 32e5f9049c3ef626c9ba7b643c06b09b1ca8f6c1 (patch) | |
tree | cfb86df61667f9495a0832a14ea26b6229b60141 | |
parent | 1b984fc258656f741b02565e7c50b4bb45f7de52 (diff) | |
parent | bdc267ab8d4c43d41179c3c8d74b56e1f2b58340 (diff) | |
download | rails-32e5f9049c3ef626c9ba7b643c06b09b1ca8f6c1.tar.gz rails-32e5f9049c3ef626c9ba7b643c06b09b1ca8f6c1.tar.bz2 rails-32e5f9049c3ef626c9ba7b643c06b09b1ca8f6c1.zip |
Merge pull request #36635 from abhaynikam/36332-fix-engine-documentation-to-remove-js-directory-mention
Fixed the engine documentation to not mention of assets/javascript in directory structure [ci skip]
-rw-r--r-- | guides/source/engines.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/engines.md b/guides/source/engines.md index 90b08b00f0..8961a079b5 100644 --- a/guides/source/engines.md +++ b/guides/source/engines.md @@ -220,7 +220,7 @@ Inside the `app` directory are the standard `assets`, `controllers`, `helpers`, `jobs`, `mailers`, `models`, and `views` directories that you should be familiar with from an application. We'll look more into models in a future section, when we're writing the engine. -Within the `app/assets` directory, there are the `images`, `javascripts` and +Within the `app/assets` directory, there are the `images` and `stylesheets` directories which, again, you should be familiar with due to their similarity to an application. One difference here, however, is that each directory contains a sub-directory with the engine name. Because this engine is |