Skip to content

Commit 19d0b6f

Browse files
authored
Properly escaped backtick in "Class`1"
The original had incorrectly escaped backtick which was not shown ourside of edit form. I've updated the code to properly print it.
1 parent 7fdffd3 commit 19d0b6f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

documentation/SA1649.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
## Cause
1919

2020
The file name of a C# code file does not match the first type declared in the file. For generics that are defined as
21-
`Class1<T>` the name of the file needs to be `Class1{T}.cs` or `Class1``1.cs` depending on the `fileNamingConvention`
21+
`Class1<T>` the name of the file needs to be `Class1{T}.cs` or `Class1```1.cs` depending on the `fileNamingConvention`
2222
setting. See [Configuration.md](Configuration.md) for more information.
2323

2424
Partial classes are ignored.

0 commit comments

Comments
 (0)