From 947bcd5ba5290db78ef9e65fc90ceade0db3244f Mon Sep 17 00:00:00 2001 From: Bill Wagner Date: Wed, 12 Aug 2026 14:43:52 -0400 Subject: [PATCH] Fix inline array example fence Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Copilot-Session: 5324a812-2152-4917-8916-a73f37ba30a8 --- standard/structs.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/standard/structs.md b/standard/structs.md index 7d9047675..0c9db8c18 100644 --- a/standard/structs.md +++ b/standard/structs.md @@ -554,7 +554,7 @@ Any indexers or `Slice` methods declared for an inline array type that have sign > *Example*: Consider the following: > > -```csharp +> ```csharp > var buffer = new Buffer(); > int x = buffer[2]; // element access > @@ -574,8 +574,6 @@ Any indexers or `Slice` methods declared for an inline array type that have sign > > Even though the struct declares an indexer taking an `int` argument, that indexer is not used by element access `buffer[2]`. *end example* - - ## 16.7 Record struct and non-record struct differences A record struct differs from a non-record struct in several important ways: