Skip to content

Commit 4f5d463

Browse files
Remove malformed brief commands in comments (NFC) (llvm#70746)
Co-authored-by: Timm Baeder <[email protected]>
1 parent 3b786f2 commit 4f5d463

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

clang/include/clang/Basic/TargetInfo.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1291,20 +1291,20 @@ class TargetInfo : public TransferrableTargetInfo,
12911291
fillValidCPUList(Values);
12921292
}
12931293

1294-
/// brief Determine whether this TargetInfo supports the given CPU name.
1294+
/// Determine whether this TargetInfo supports the given CPU name.
12951295
virtual bool isValidCPUName(StringRef Name) const {
12961296
return true;
12971297
}
12981298

1299-
/// brief Determine whether this TargetInfo supports the given CPU name for
1300-
// tuning.
1299+
/// Determine whether this TargetInfo supports the given CPU name for
1300+
/// tuning.
13011301
virtual bool isValidTuneCPUName(StringRef Name) const {
13021302
return isValidCPUName(Name);
13031303
}
13041304

13051305
virtual ParsedTargetAttr parseTargetAttr(StringRef Str) const;
13061306

1307-
/// brief Determine whether this TargetInfo supports tune in target attribute.
1307+
/// Determine whether this TargetInfo supports tune in target attribute.
13081308
virtual bool supportsTargetAttributeTune() const {
13091309
return false;
13101310
}

clang/include/clang/Parse/Parser.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -663,9 +663,9 @@ class Parser : public CodeCompletionHandler {
663663
return PrevTokLocation;
664664
}
665665

666-
///\ brief When we are consuming a code-completion token without having
667-
/// matched specific position in the grammar, provide code-completion results
668-
/// based on context.
666+
/// When we are consuming a code-completion token without having matched
667+
/// specific position in the grammar, provide code-completion results based
668+
/// on context.
669669
///
670670
/// \returns the source location of the code-completion token.
671671
SourceLocation handleUnexpectedCodeCompletionToken();

0 commit comments

Comments
 (0)