From 9510e14d356e35bca85a8c29ee0681a5b7a67833 Mon Sep 17 00:00:00 2001 From: Matteo Tomasini Date: Thu, 1 Apr 2010 09:49:13 +0000 Subject: [PATCH] Fixed function name and comments. --- PluginPack/RssFeedDisplay.cs | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) 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;