Skip to content

Commit 2fb1061

Browse files
RexJaeschkeBillWagner
authored andcommitted
fix formatting
1 parent a60d59e commit 2fb1061

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

standard/expressions.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1909,9 +1909,11 @@ The run-time processing of an array access of the form `P[A]`, where `P` is a *p
19091909
> ```
19101910
>
19111911
> `values[idx1][idx2]` is transformed by the implementation to
1912+
>
19121913
> ```csharp
19131914
> values[idx1.GetOffset(values.Length)][idx2.GetOffset(values[idx1].Length)]
19141915
> ```
1916+
>
19151917
> *end example*
19161918
19171919
> *Example*: Given the following multidimensional array and Indexes:
@@ -1931,9 +1933,11 @@ The run-time processing of an array access of the form `P[A]`, where `P` is a *p
19311933
> *end example*
19321934
19331935
> *Example*: Given the following one-dimensional array:
1936+
>
19341937
> ```csharp
19351938
> string[] seasons = new string[] { "Summer", "Autumn", "Winter", "Spring" };
19361939
> ```
1940+
>
19371941
> `seasons[0..2]` is transformed by the implementation to
19381942
>
19391943
> ```csharp

0 commit comments

Comments
 (0)