Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ If you do not override the conversion behaviour the following rules will be appl
| `IDictonary<string, TValue>` | `M` | Will treat the `Dictionary` as a **Key-Value** store. |
| `IEnumerable<T>` | `L` | |
| `IReadOnlyList<T>` | `L` | |
| `IRedonlyDictionary<string, TValue>` | `M` | Will treat the `Dictionary` as a **Key-Value** store. |
| `IReadonlyDictionary<string, TValue>` | `M` | Will treat the `Dictionary` as a **Key-Value** store. |
| `ILookup<string, TValue>` | `M` | Will treat the `ILookup` as a **Key-Values** store. |
| `ISet<int>` | `NS` | |
| `ISet<long>` | `NS` | |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

namespace DynamoDBGenerator.Converters.Internal;

internal sealed class ISO8601TimeSpanConveter : IValueTypeConverter<TimeSpan>
internal sealed class ISO8601TimeSpanConverter : IValueTypeConverter<TimeSpan>
{
public TimeSpan? Read(AttributeValue attributeValue)
{
Expand Down
2 changes: 1 addition & 1 deletion src/DynamoDBGenerator/Options/AttributeValueConverters.cs
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ public class AttributeValueConverters
/// <summary>
/// The <see cref="TimeSpan"/> converter.
/// </summary>
public IValueTypeConverter<TimeSpan> TimeSpanConverter { get; protected init;} = new ISO8601TimeSpanConveter();
public IValueTypeConverter<TimeSpan> TimeSpanConverter { get; protected init;} = new ISO8601TimeSpanConverter();

/// <summary>
/// The <see cref="Guid"/> converter.
Expand Down