-
-
Notifications
You must be signed in to change notification settings - Fork 748
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Used non-escaped text from XML doc summary for descriptions (#7563)
- Loading branch information
1 parent
bc1148e
commit 32b8fb0
Showing
3 changed files
with
13 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 6 additions & 9 deletions
15
src/HotChocolate/Core/test/Types.Tests.Documentation/ClassWithSummary.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,6 @@ | ||
namespace HotChocolate.Types.Descriptors | ||
{ | ||
/// <summary> | ||
/// I am a test class. | ||
/// </summary> | ||
public class ClassWithSummary | ||
{ | ||
} | ||
} | ||
namespace HotChocolate.Types.Descriptors; | ||
|
||
/// <summary> | ||
/// I am a test class. This should not be escaped: > | ||
/// </summary> | ||
public class ClassWithSummary; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters