File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -1217,7 +1217,7 @@ public void BuildStateArray()
1217
1217
{
1218
1218
JsonWriter . State [ ] [ ] stateArray = JsonWriter . BuildStateArray ( ) ;
1219
1219
1220
- var valueStates = JsonWriter . StateArrayTempate [ 7 ] ;
1220
+ var valueStates = JsonWriter . StateArrayTemplate [ 7 ] ;
1221
1221
1222
1222
foreach ( JsonToken valueToken in GetValues ( typeof ( JsonToken ) ) )
1223
1223
{
Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ internal enum State
62
62
// array that gives a new state based on the current state an the token being written
63
63
private static readonly State [ ] [ ] StateArray ;
64
64
65
- internal static readonly State [ ] [ ] StateArrayTempate = new [ ]
65
+ internal static readonly State [ ] [ ] StateArrayTemplate = new [ ]
66
66
{
67
67
// Start PropertyName ObjectStart Object ArrayStart Array ConstructorStart Constructor Closed Error
68
68
//
@@ -78,9 +78,9 @@ internal enum State
78
78
79
79
internal static State [ ] [ ] BuildStateArray ( )
80
80
{
81
- List < State [ ] > allStates = StateArrayTempate . ToList ( ) ;
82
- State [ ] errorStates = StateArrayTempate [ 0 ] ;
83
- State [ ] valueStates = StateArrayTempate [ 7 ] ;
81
+ List < State [ ] > allStates = StateArrayTemplate . ToList ( ) ;
82
+ State [ ] errorStates = StateArrayTemplate [ 0 ] ;
83
+ State [ ] valueStates = StateArrayTemplate [ 7 ] ;
84
84
85
85
EnumInfo enumValuesAndNames = EnumUtils . GetEnumValuesAndNames ( typeof ( JsonToken ) ) ;
86
86
You can’t perform that action at this time.
0 commit comments