Skip to content

Commit adcbb29

Browse files
committed
Fix TimeSpan converter typo
1 parent a057e75 commit adcbb29

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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` | |

src/DynamoDBGenerator/Converters/Internal/ISO8601TimeSpanConveter.cs renamed to src/DynamoDBGenerator/Converters/Internal/ISO8601TimeSpanConverter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
namespace 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
{

src/DynamoDBGenerator/Options/AttributeValueConverters.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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.

0 commit comments

Comments
 (0)