From 7c4836ed9b245498af9c5fee1448fafd7c46a309 Mon Sep 17 00:00:00 2001 From: Dharik Patel Date: Wed, 23 Nov 2016 15:31:29 -0600 Subject: [PATCH] Fixed typo --- docs/en/advanced/lazy-loading.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/en/advanced/lazy-loading.md b/docs/en/advanced/lazy-loading.md index 31092194f..eae732ed7 100644 --- a/docs/en/advanced/lazy-loading.md +++ b/docs/en/advanced/lazy-loading.md @@ -5,7 +5,7 @@ When building apps with a bundler, the JavaScript bundle can become quite large Combining Vue's [async component feature](http://vuejs.org/guide/components.html#Async-Components) and Webpack's [code splitting feature](https://webpack.github.io/docs/code-splitting.html), it's trivially easy to lazy-load route components. -All we need to do is defining our route components as async components: +All we need to do is define our route components as async components: ``` js const Foo = resolve => {