From 54680908254e9c85d2f85f006cc2e54ed11f1178 Mon Sep 17 00:00:00 2001 From: Simi Oluwatomi Date: Sun, 2 Sep 2018 18:01:29 +0100 Subject: [PATCH] fix(guides) Fixed gramattical error (#2477) * Update code-splitting.md * Update code-splitting.md --- src/content/guides/code-splitting.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/content/guides/code-splitting.md b/src/content/guides/code-splitting.md index d77f2a703d6d..8f227323e6d6 100644 --- a/src/content/guides/code-splitting.md +++ b/src/content/guides/code-splitting.md @@ -321,8 +321,8 @@ T> webpack will add the prefetch hint once the parent chunk has been loaded. Preload directive has a bunch of differences compared to prefetch: -- A preloaded chunk starts loading in parallel to the parent chunk. A prefetched chunk starts after the parent chunk finish. -- A preloaded chunk has medium priority and instantly downloaded. A prefetched chunk is downloaded in browser idle time. +- A preloaded chunk starts loading in parallel to the parent chunk. A prefetched chunk starts after the parent chunk finishes loading. +- A preloaded chunk has medium priority and is instantly downloaded. A prefetched chunk is downloaded while browser is idle. - A preloaded chunk should be instantly requested by the parent chunk. A prefetched chunk can be used anytime in the future. - Browser support is different.