From 73ef5de57623754aada99612e78ea09fa35050a3 Mon Sep 17 00:00:00 2001 From: Markus Ewald Date: Wed, 4 Jun 2008 20:04:32 +0000 Subject: [PATCH] Fixed dumb misspelled comment git-svn-id: file:///srv/devel/repo-conversion/nusu@74 d2e56fa2-650e-0410-a79f-9358c0239efd --- Source/PathHelper.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/PathHelper.cs b/Source/PathHelper.cs index 8521fd6..e1c6147 100644 --- a/Source/PathHelper.cs +++ b/Source/PathHelper.cs @@ -36,8 +36,8 @@ namespace Nuclex.Support { if(lastCommonRoot == -1) return absolutePath; - // Calculate the required length for the StrinBuilder to be slightly more - // friendly in terms of memory usage. + // Calculate the required length for the StringBuilder in order to be slightly + // more friendly in terms of memory usage. int requiredLength = (baseDirectories.Length - (lastCommonRoot + 1)) * 3; for(int index = lastCommonRoot + 1; index < absoluteDirectories.Length; ++index) requiredLength += absoluteDirectories[index].Length + 1;