Merge branch 'release' into dev

This commit is contained in:
Pranav K 2015-04-08 07:18:56 -07:00
commit f280353a56
1 changed files with 2 additions and 2 deletions

View File

@ -29,9 +29,9 @@ namespace Microsoft.AspNet.Mvc.Razor.Compilation
$"{sourceFilePath} ({location.LineIndex},{location.CharacterIndex}) {razorError.Message}";
StartColumn = location.CharacterIndex;
StartLine = location.LineIndex;
StartLine = location.LineIndex + 1;
EndColumn = location.CharacterIndex + razorError.Length;
EndLine = location.LineIndex;
EndLine = location.LineIndex + 1;
}
/// <summary>