From 468e08dfa7608b336de6fb81916c22f86fb47d25 Mon Sep 17 00:00:00 2001 From: Josh Soref Date: Fri, 30 Oct 2020 14:40:40 -0400 Subject: [PATCH] spelling: constructor Signed-off-by: Josh Soref --- doc/devdocs/modules/launcher/plugins/overview.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/devdocs/modules/launcher/plugins/overview.md b/doc/devdocs/modules/launcher/plugins/overview.md index ea6233c6c4..924d97fcde 100644 --- a/doc/devdocs/modules/launcher/plugins/overview.md +++ b/doc/devdocs/modules/launcher/plugins/overview.md @@ -5,7 +5,7 @@ The following basic functions are common to each of the plugins. They perform so Each plugin implements the `IPlugin` interface which comprises of the `Init()` and `Query()` functions. ### `Init` -- The `Init()` function initializes the context, storage and settings of each plugin. This is equivalent to a contructor and is the first function to be called in the `Main.cs` file for each plugin. +- The `Init()` function initializes the context, storage and settings of each plugin. This is equivalent to a constructor and is the first function to be called in the `Main.cs` file for each plugin. ### `Query` - For every query that the user enters into PT Run, the `PluginManager.cs` executes the `Query()` function in the `Main.cs` file corresponding to each Plugin.