diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md index b8b0e4d..bef2630 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -17,4 +17,4 @@ A clear and concise description of what you want to happen. A clear and concise description of any alternative solutions or features you've considered. **Additional context** -Add any other context and attachments about the feature request here. +Add any other context or attachments about the feature request here. diff --git a/SLCommandScript.Core/README.md b/SLCommandScript.Core/README.md index 309efdc..8b52ae8 100644 --- a/SLCommandScript.Core/README.md +++ b/SLCommandScript.Core/README.md @@ -38,10 +38,10 @@ public class MyCustomScriptLoader : SLCommandScript.Core.IScriptsLoader ``` ### Adding custom iterable objects ```csharp -SLCommandScript.Core.Iterables.IIterable MyCustomIterablesProvider() +SLCommandScript.Core.Iterables.IIterable MyCustomIterableProvider() { // Execute your logic here } -SLCommandScript.Core.Iterables.IterablesUtils.Providers["MyIterablesName"] = MyCustomIterablesProvider; +SLCommandScript.Core.Iterables.IterablesUtils.Providers["MyIterableName"] = MyCustomIterableProvider; ```