Skip to content

Commit eb9c0f9

Browse files
Fix spelling
1 parent 45808a7 commit eb9c0f9

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/AspNetCore/WebApi/test/Asp.Versioning.Http.Tests/MediaTypeApiVersionBuilderTest.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
// Copyright (c) .NET Foundation and contributors. All rights reserved.
22

3+
#pragma warning disable ASP0015 // Suggest using IHeaderDictionary properties
4+
35
namespace Asp.Versioning;
46

57
using Microsoft.AspNetCore.Http;
@@ -260,7 +262,7 @@ public void read_should_assume_version_from_single_parameter_in_media_type_templ
260262
[InlineData( "application/vnd-v{v}+json", "v", "application/vnd-v2.1+json", "2.1" )]
261263
[InlineData( "application/vnd-v{ver}+json", "ver", "application/vnd-v2022-11-01+json", "2022-11-01" )]
262264
[InlineData( "application/vnd-{version}+xml", "version", "application/vnd-1.1-beta+xml", "1.1-beta" )]
263-
public void read_should_retreive_version_from_media_type_template(
265+
public void read_should_retrieve_version_from_media_type_template(
264266
string template,
265267
string parameterName,
266268
string mediaType,

0 commit comments

Comments
 (0)