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

github.com/xamarin/NRefactory.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Grunwald <daniel@danielgrunwald.de>2013-04-26 22:17:13 +0400
committerDaniel Grunwald <daniel@danielgrunwald.de>2013-05-08 20:36:55 +0400
commit7f24e36cfde7ad999e25f0acae367820e547197c (patch)
treeaafa1e1b27dbec92e65803cb2b21322c182e32b0 /ICSharpCode.NRefactory.Xml/TagReader.cs
parent6e5560a6b911058ac7022ed6bc0bafd71a95a08c (diff)
Fix handling of empty elements in AXmlReader; and add support for comments.
Diffstat (limited to 'ICSharpCode.NRefactory.Xml/TagReader.cs')
-rw-r--r--ICSharpCode.NRefactory.Xml/TagReader.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/ICSharpCode.NRefactory.Xml/TagReader.cs b/ICSharpCode.NRefactory.Xml/TagReader.cs
index 49423307..e5cab934 100644
--- a/ICSharpCode.NRefactory.Xml/TagReader.cs
+++ b/ICSharpCode.NRefactory.Xml/TagReader.cs
@@ -152,7 +152,7 @@ namespace ICSharpCode.NRefactory.Xml
});
} else {
// Mismatched name - the nesting isn't properly;
- // clear the whole stack so that none of the currently open elements are closed as property-nested.
+ // clear the whole stack so that none of the currently open elements are closed as properly-nested.
elementNameStack.Clear();
}
}