From bf080d172af6a3121963c61c3536fd060d3355bb Mon Sep 17 00:00:00 2001 From: Alexander Nguyen <66571090+GalexyN@users.noreply.github.com> Date: Wed, 7 Sep 2022 04:23:45 -0700 Subject: [PATCH] docs(content-docs): updates typo in lifecycle-apis.md (#8055) --- website/docs/api/plugin-methods/lifecycle-apis.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/api/plugin-methods/lifecycle-apis.md b/website/docs/api/plugin-methods/lifecycle-apis.md index 739b902d07..4e2d788280 100644 --- a/website/docs/api/plugin-methods/lifecycle-apis.md +++ b/website/docs/api/plugin-methods/lifecycle-apis.md @@ -11,7 +11,7 @@ During the build, plugins are loaded in parallel to fetch their own contents and Plugins should use this lifecycle to fetch from data sources (filesystem, remote API, headless CMS, etc.) or do some server processing. The return value is the content it needs. -For example, this plugin below return a random integer between 1 to 10 as content. +For example, this plugin below returns a random integer between 1 and 10 as content. ```js title="docusaurus-plugin/src/index.js" module.exports = function (context, options) {