Browse Source

Fixed potential xml comment bug.

pull/32/merge
Mike Krüger 13 years ago
parent
commit
8b7b3f708b
  1. 10
      ICSharpCode.NRefactory.CSharp/Completion/CSharpCompletionEngine.cs

10
ICSharpCode.NRefactory.CSharp/Completion/CSharpCompletionEngine.cs

@ -2980,24 +2980,24 @@ namespace ICSharpCode.NRefactory.CSharp.Completion
#region Xml Comments #region Xml Comments
static readonly List<string> commentTags = new List<string>(new string[] { static readonly List<string> commentTags = new List<string>(new string[] {
"c",
"code", "code",
"c",
"example", "example",
"exception", "exception",
"include", "include",
"list",
"listheader", "listheader",
"list",
"item", "item",
"term", "term",
"description", "description",
"para",
"param",
"paramref", "paramref",
"param",
"para",
"permission", "permission",
"remarks", "remarks",
"returns", "returns",
"see",
"seealso", "seealso",
"see",
"summary", "summary",
"value" "value"
} }

Loading…
Cancel
Save