Skip to content

Commit fd25a1b

Browse files
author
Ron Petrusha
authored
Fixed migration formatting issue (#6378)
1 parent bc4e7ef commit fd25a1b

File tree

1 file changed

+1
-1
lines changed
  • docs/csharp/programming-guide/classes-and-structs

1 file changed

+1
-1
lines changed

docs/csharp/programming-guide/classes-and-structs/fields.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ A *field* is a variable of any type that is declared directly in a [class](../..
3535

3636
A field can optionally be declared [static](../../../csharp/language-reference/keywords/static.md). This makes the field available to callers at any time, even if no instance of the class exists. For more information, see [Static Classes and Static Class Members](../../../csharp/programming-guide/classes-and-structs/static-classes-and-static-class-members.md).
3737

38-
A field can be declared [readonly](../../../csharp/language-reference/keywords/readonly.md). A read-only field can only be assigned a value during initialization or in a constructor. A `static``readonly` field is very similar to a constant, except that the C# compiler does not have access to the value of a static read-only field at compile time, only at run time. For more information, see [Constants](../../../csharp/programming-guide/classes-and-structs/constants.md).
38+
A field can be declared [readonly](../../../csharp/language-reference/keywords/readonly.md). A read-only field can only be assigned a value during initialization or in a constructor. A `static readonly` field is very similar to a constant, except that the C# compiler does not have access to the value of a static read-only field at compile time, only at run time. For more information, see [Constants](../../../csharp/programming-guide/classes-and-structs/constants.md).
3939

4040
## C# Language Specification
4141
[!INCLUDE[CSharplangspec](~/includes/csharplangspec-md.md)]

0 commit comments

Comments
 (0)