Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Mindaugas Laganeckas committed Dec 12, 2023
1 parent 0881bba commit 1e2ef9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/WireMock.Net/Serialization/MappingFileNameSanitizer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public string BuildSanitizedFileName(IMapping mapping)
string name;
if (!string.IsNullOrEmpty(mapping.Title))
{
// remove 'Proxy Mapping for ' amd am extra space character after the HTTP request method
// remove 'Proxy Mapping for ' and an extra space character after the HTTP request method
name = mapping.Title.Replace(mappingTitlePrefix, "").Replace(' '.ToString(), string.Empty);
if (_settings.ProxyAndRecordSettings?.AppendGuidToSavedMappingFile == true)
{
Expand Down

0 comments on commit 1e2ef9c

Please sign in to comment.