Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions snippets/csharp/keywords/ReadonlyKeywordExamples.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

namespace keywords
{
// <SnippetReadonlyField
// <SnippetReadonlyField>
class Age
{
readonly int year;
Expand Down Expand Up @@ -79,7 +79,7 @@ public static void Examples()
// <SnippetReadonlyReturn>
private static readonly Point origin = new Point(0, 0);
public static ref readonly Point Origin => ref origin;
// </SnippetReaodnlyReturn>
// </SnippetReadonlyReturn>

private static void ReadonlyRefReturns()
{
Expand Down