Fixes spelling error in docs

This commit is contained in:
Lord Hepipud 2020-08-17 14:51:31 +02:00
parent 564711c1b6
commit 4a069ef6f5

View file

@ -84,7 +84,7 @@ function Invoke-IcingaCheckTutorial()
### Basic Plugin Architecture
A basic plugin contains of multiple parts. At first we general `arguments` to parse thresholds through. In addition to that we will make use of several functions to create our check and check results. The functions [New-IcingaCheck](01-New-IcingaCheck), [New-IcingaCheckPackage](02-New-IcingaCheckPackage) and `New-IcingaCheckResult` will do the work for us.
A basic plugin contains of multiple parts. At first we general `arguments` to parse thresholds through. In addition to that we will make use of several functions to create our check and check results. The functions [New-IcingaCheck](01-New-IcingaCheck.md), [New-IcingaCheckPackage](02-New-IcingaCheckPackage.md) and `New-IcingaCheckResult` will do the work for us.
### Writing Our Base-Skeleton