File tree 1 file changed +3
-3
lines changed
csharp/ql/lib/semmle/code/csharp
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ import Location
11
11
/**
12
12
* A single line of comment.
13
13
*
14
- * Either a single line comment (`SinglelineComment`), an XML comment (`XmlComment `),
14
+ * Either a single line comment (`SinglelineComment`), an XML comment (`XmlCommentLine `),
15
15
* or a line in a multi-line comment (`MultilineComment`).
16
16
*/
17
17
class CommentLine extends @commentline {
@@ -66,7 +66,7 @@ class MultilineComment extends CommentLine, @multilinecomment {
66
66
* /// </summary>
67
67
* ```
68
68
*/
69
- class XmlComment extends CommentLine , @xmldoccomment {
69
+ class XmlCommentLine extends CommentLine , @xmldoccomment {
70
70
override string toString ( ) { result = "/// ..." }
71
71
72
72
private string xmlAttributeRegex ( ) {
@@ -196,7 +196,7 @@ class CommentBlock extends @commentblock {
196
196
197
197
/** Holds if this block consists entirely of XML comments. */
198
198
predicate isXmlCommentBlock ( ) {
199
- forall ( CommentLine l | l = getAChild ( ) | l instanceof XmlComment )
199
+ forall ( CommentLine l | l = getAChild ( ) | l instanceof XmlCommentLine )
200
200
}
201
201
202
202
/** Gets a `CommentLine` containing text. */
You can’t perform that action at this time.
0 commit comments