Skip to content

Commit 7009097

Browse files
Lynn Dailyndaidaii
authored andcommitted
style change
1 parent 7ffab41 commit 7009097

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/NuGetGallery.Services/Configuration/IFeatureFlagService.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ public interface IFeatureFlagService
148148
bool IsPackageRenamesEnabled(User user);
149149

150150
/// <summary>
151-
/// Whether the user is able to upload package with an embedded readme file.
151+
/// Whether the user is able to the upload package with an embedded readme file.
152152
/// </summary>
153153
bool IsUploadEmbeddedReadmeEnabled(User user);
154154
}

tests/NuGetGallery.Facts/Services/PackageMetadataValidationServiceFacts.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1397,10 +1397,10 @@ public async Task AcceptsPackagesWithEmbeddedReadmeForFlightedUsers()
13971397
[Theory]
13981398
[InlineData("<readme><something/></readme>")]
13991399
[InlineData("<readme><something>readme.md</something></readme>")]
1400-
public async Task RejectsReadmeElementWithChildren(string ReadmeElement)
1400+
public async Task RejectsReadmeElementWithChildren(string readmeElement)
14011401
{
14021402
_nuGetPackage = GeneratePackageWithUserContent(
1403-
getCustomNuspecNodes: () => ReadmeElement,
1403+
getCustomNuspecNodes: () => readmeElement,
14041404
licenseExpression: "MIT",
14051405
licenseUrl: new Uri("https://licenses.nuget.org/MIT"));
14061406
_featureFlagService

0 commit comments

Comments
 (0)