Skip to content

Commit

Permalink
[clang][Driver][HLSL] Fix formatting of clang-dxc options group title
Browse files Browse the repository at this point in the history
Some extra `<>` and a missing full stop.
  • Loading branch information
DavidSpickett committed Feb 13, 2024
1 parent 987258f commit 381a00d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions clang/include/clang/Driver/Options.td
Original file line number Diff line number Diff line change
Expand Up @@ -8466,8 +8466,8 @@ def _SLASH_ZW : CLJoined<"ZW">;
// clang-dxc Options
//===----------------------------------------------------------------------===//

def dxc_Group : OptionGroup<"<clang-dxc options>">, Visibility<[DXCOption]>,
HelpText<"dxc compatibility options">;
def dxc_Group : OptionGroup<"clang-dxc options">, Visibility<[DXCOption]>,
HelpText<"dxc compatibility options.">;
class DXCFlag<string name> : Option<["/", "-"], name, KIND_FLAG>,
Group<dxc_Group>, Visibility<[DXCOption]>;
class DXCJoinedOrSeparate<string name> : Option<["/", "-"], name,
Expand Down

0 comments on commit 381a00d

Please sign in to comment.