From d4be4cdc3da5301d989a2ac04ff63caade38008d Mon Sep 17 00:00:00 2001 From: Roy Klutman Date: Fri, 10 Aug 2018 22:57:29 +0200 Subject: [PATCH] Fix typo (shard -> shared) --- frontend/encore/shared-entry.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/encore/shared-entry.rst b/frontend/encore/shared-entry.rst index 6958a331f43..ddab53743da 100644 --- a/frontend/encore/shared-entry.rst +++ b/frontend/encore/shared-entry.rst @@ -39,7 +39,7 @@ in your layout, *before* ``app.js``: Before making this change, if both ``app.js`` and ``store.js`` require ``jquery``, then ``jquery`` would be packaged into *both* files, which is wasteful. By making -``app.js`` your "shard" entry, *any* code required by ``app.js`` (like jQuery) will +``app.js`` your "shared" entry, *any* code required by ``app.js`` (like jQuery) will *no longer* be packaged into any other files. The same is true for any CSS. Because ``app.js`` contains all the common code that other entry files depend on,