diff --git a/PluginPack/RssFeedDisplay.cs b/PluginPack/RssFeedDisplay.cs
index 9683d3f..44d028e 100644
--- a/PluginPack/RssFeedDisplay.cs
+++ b/PluginPack/RssFeedDisplay.cs
@@ -83,7 +83,7 @@ namespace ScrewTurn.Wiki.Plugins.PluginPack {
int words = 350;
if(block.Value.Groups.Count > 3) {
- analizeSettings(block.Value.Groups[4].Value, out entries, out newWindow, out words);
+ AnalyzeSettings(block.Value.Groups[4].Value, out entries, out newWindow, out words);
}
if(isTwitter) {
@@ -144,7 +144,14 @@ namespace ScrewTurn.Wiki.Plugins.PluginPack {
return buffer.ToString();
}
- private void analizeSettings(string settingString, out int entries, out bool newWindow, out int words) {
+ ///
+ /// Analizes the settings string.
+ ///
+ /// The setting string.
+ /// The number of entries.
+ /// The newWindow value.
+ /// The max number of words.
+ private void AnalyzeSettings(string settingString, out int entries, out bool newWindow, out int words) {
entries = 1;
newWindow = true;
words = 350;