Skip to content

Commit

Permalink
Remove malformed brief commands in comments (NFC) (#70746)
Browse files Browse the repository at this point in the history
Co-authored-by: Timm Baeder <tbaeder@redhat.com>
  • Loading branch information
mikerice1969 and tbaederr committed Oct 31, 2023
1 parent 3b786f2 commit 4f5d463
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions clang/include/clang/Basic/TargetInfo.h
Original file line number Diff line number Diff line change
Expand Up @@ -1291,20 +1291,20 @@ class TargetInfo : public TransferrableTargetInfo,
fillValidCPUList(Values);
}

/// brief Determine whether this TargetInfo supports the given CPU name.
/// Determine whether this TargetInfo supports the given CPU name.
virtual bool isValidCPUName(StringRef Name) const {
return true;
}

/// brief Determine whether this TargetInfo supports the given CPU name for
// tuning.
/// Determine whether this TargetInfo supports the given CPU name for
/// tuning.
virtual bool isValidTuneCPUName(StringRef Name) const {
return isValidCPUName(Name);
}

virtual ParsedTargetAttr parseTargetAttr(StringRef Str) const;

/// brief Determine whether this TargetInfo supports tune in target attribute.
/// Determine whether this TargetInfo supports tune in target attribute.
virtual bool supportsTargetAttributeTune() const {
return false;
}
Expand Down
6 changes: 3 additions & 3 deletions clang/include/clang/Parse/Parser.h
Original file line number Diff line number Diff line change
Expand Up @@ -663,9 +663,9 @@ class Parser : public CodeCompletionHandler {
return PrevTokLocation;
}

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

0 comments on commit 4f5d463

Please sign in to comment.