Skip to content

Commit c5cd25d

Browse files
committed
fix two format errors.
1 parent 2745848 commit c5cd25d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

standard/expressions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1067,7 +1067,7 @@ The run-time processing of a function member invocation consists of the followin
10671067
- `M` is invoked. The variable referenced by `E` becomes the variable referenced by `this`.
10681068
- Otherwise:
10691069
- `E` is evaluated. If this evaluation causes an exception, then no further steps are executed.
1070-
- The argument list is evaluated as described in [§12.6.2](expressions.md#1262-argument-lists).
1070+
- The argument list is evaluated as described in [§12.6.2](expressions.md#1262-argument-lists).
10711071
- If the type of `E` is a *value_type*, a boxing conversion ([§11.2.8](conversions.md#1128-boxing-conversions)) is performed to convert `E` to a *class_type*, and `E` is considered to be of that *class_typein the following steps. If the *value_typeis an *enum_type*, the *class_type* is `System.Enum;` otherwise, it is `System.ValueType`.
10721072
- The value of `E` is checked to be valid. If the value of `E` is null, a `System.NullReferenceException` is thrown and no further steps are executed.
10731073
- The function member implementation to invoke is determined:
@@ -2368,7 +2368,7 @@ If the *type* in a *default_value_expression* evaluates at run-time to a referen
23682368

23692369
A *default_value_expression* is a constant expression ([§12.20](expressions.md#1220-constant-expressions)) if *type* is a reference type or a type parameter that is known to be a reference type ([§9.2](types.md#92-reference-types)). In addition, a *default_value_expression* is a constant expression if the type is one of the following value types: `sbyte`, `byte`, `short`, `ushort`, `int`, `uint`, `long`, `ulong`, `char`, `float`, `double`, `decimal`, `bool,` or any enumeration type.
23702370

2371-
### 12.7.17 Anonymous method expressions
2371+
### 12.7.16 Anonymous method expressions
23722372

23732373
An *anonymous_method_expression* is one of two ways of defining an anonymous function. These are further described in [§12.16](expressions.md#1216-anonymous-function-expressions).
23742374

0 commit comments

Comments
 (0)