From d737a85005eef2bd53c8ea6ceff519068e6c14ab Mon Sep 17 00:00:00 2001 From: Philip Lambok Date: Sun, 12 Jan 2020 20:45:38 +0700 Subject: [PATCH] Fix small typo in api docs. --- docs/api/options.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/api/options.md b/docs/api/options.md index 2bf9d03f5..d385d3047 100644 --- a/docs/api/options.md +++ b/docs/api/options.md @@ -148,7 +148,7 @@ shallowMount(Component, { ``` ::: warning Root Element required -Due to the internal implementatioj of this feature, the slot content has to return a root element, even though a scoped slot is allowed to return an array of elements. +Due to the internal implementation of this feature, the slot content has to return a root element, even though a scoped slot is allowed to return an array of elements. If you ever need this in a test, the recommended workaround is to wrap the component under test in another component and mount that one: :::