Skip to content

Commit 7d7fce7

Browse files
Fix typo in exception message of AttributeMapper.Map method
1 parent 900ba69 commit 7d7fce7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Atata.Configuration.Json/Mapping/AttributeMapper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public Attribute Map(AttributeJsonSection section)
4141

4242
if (!typeof(Attribute).IsAssignableFrom(attributeType))
4343
throw new ConfigurationException(
44-
$"\"type\"=\"{section.Type}\" configuration property of attribute secton doesn't reference an attribute type.");
44+
$"\"type\"=\"{section.Type}\" configuration property of attribute section doesn't reference an attribute type.");
4545

4646
var valuesMap = section.ExtraPropertiesMap.ToDictionary(
4747
x => x.Key,

0 commit comments

Comments
 (0)