Skip to content

Commit b61821d

Browse files
RexJaeschkeBillWagner
authored andcommitted
fix formatting
1 parent 4982d2e commit b61821d

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
@@ -1941,9 +1941,11 @@ The run-time processing of an array access of the form `P[A]`, where `P` is a *p
19411941
> ```
19421942
>
19431943
> `values[idx1][idx2]` is transformed by the implementation to
1944+
>
19441945
> ```csharp
19451946
> values[idx1.GetOffset(values.Length)][idx2.GetOffset(values[idx1].Length)]
19461947
> ```
1948+
>
19471949
> *end example*
19481950
19491951
> *Example*: Given the following multidimensional array and Indexes:
@@ -1963,9 +1965,11 @@ The run-time processing of an array access of the form `P[A]`, where `P` is a *p
19631965
> *end example*
19641966
19651967
> *Example*: Given the following one-dimensional array:
1968+
>
19661969
> ```csharp
19671970
> string[] seasons = new string[] { "Summer", "Autumn", "Winter", "Spring" };
19681971
> ```
1972+
>
19691973
> `seasons[0..2]` is transformed by the implementation to
19701974
>
19711975
> ```csharp

0 commit comments

Comments
 (0)