File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -111,7 +111,7 @@ If you do not override the conversion behaviour the following rules will be appl
111111| ` IDictonary<string, TValue> ` | ` M ` | Will treat the ` Dictionary ` as a ** Key-Value** store. |
112112| ` IEnumerable<T> ` | ` L ` | |
113113| ` IReadOnlyList<T> ` | ` L ` | |
114- | ` IRedonlyDictionary <string, TValue>` | ` M ` | Will treat the ` Dictionary ` as a ** Key-Value** store. |
114+ | ` IReadonlyDictionary <string, TValue>` | ` M ` | Will treat the ` Dictionary ` as a ** Key-Value** store. |
115115| ` ILookup<string, TValue> ` | ` M ` | Will treat the ` ILookup ` as a ** Key-Values** store. |
116116| ` ISet<int> ` | ` NS ` | |
117117| ` ISet<long> ` | ` NS ` | |
Original file line number Diff line number Diff line change 44
55namespace DynamoDBGenerator . Converters . Internal ;
66
7- internal sealed class ISO8601TimeSpanConveter : IValueTypeConverter < TimeSpan >
7+ internal sealed class ISO8601TimeSpanConverter : IValueTypeConverter < TimeSpan >
88{
99 public TimeSpan ? Read ( AttributeValue attributeValue )
1010 {
Original file line number Diff line number Diff line change @@ -109,7 +109,7 @@ public class AttributeValueConverters
109109 /// <summary>
110110 /// The <see cref="TimeSpan"/> converter.
111111 /// </summary>
112- public IValueTypeConverter < TimeSpan > TimeSpanConverter { get ; protected init ; } = new ISO8601TimeSpanConveter ( ) ;
112+ public IValueTypeConverter < TimeSpan > TimeSpanConverter { get ; protected init ; } = new ISO8601TimeSpanConverter ( ) ;
113113
114114 /// <summary>
115115 /// The <see cref="Guid"/> converter.
You can’t perform that action at this time.
0 commit comments