Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/aspnetwebstack.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Handley <jeff@jeffhandley.com>2012-09-12 05:05:21 +0400
committerJeff Handley <jeff@jeffhandley.com>2012-09-12 05:05:21 +0400
commit3c9ae825ac2fabc8a2bee021a7e1ee21d6d153ab (patch)
tree4dc70ef9c8b30cbb5c9aca56b39cbce547e7abd9
parentb2eb7b9093be012ecf70d7500199afaf8b2ece17 (diff)
Moving remarks below summary in XML comments
-rw-r--r--src/System.Web.Razor/Text/SourceLocation.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/System.Web.Razor/Text/SourceLocation.cs b/src/System.Web.Razor/Text/SourceLocation.cs
index 822b2648..3830e92a 100644
--- a/src/System.Web.Razor/Text/SourceLocation.cs
+++ b/src/System.Web.Razor/Text/SourceLocation.cs
@@ -26,12 +26,12 @@ namespace System.Web.Razor.Text
get { return _absoluteIndex; }
}
- /// <remarks>
- /// THIS IS 1-based!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
- /// </remarks>
/// <summary>
/// Gets the 1-based index of the line referred to by this Source Location.
/// </summary>
+ /// <remarks>
+ /// THIS IS 1-based!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
+ /// </remarks>
public int LineIndex
{
get { return _lineIndex; }