Skip to content

Commit d92e043

Browse files
committed
Fix casing for tuple elements (SA1316)
1 parent 6365a2f commit d92e043

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Cake.AzureDevOps/Repos/PullRequest/AzureDevOpsPullRequestSettings.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ public static AzureDevOpsPullRequestSettings UsingAzurePipelinesOAuthToken(bool
145145
/// <param name="throwExceptionIfVariablesDontExist">Value indicating whether an exception
146146
/// should be thrown if required environment variables could not be found.</param>
147147
/// <returns>Tuple containing a flag if variables are valid and the variable values.</returns>
148-
private static (bool valid, string accessToken) RetrieveAzurePipelinesVariables(bool throwExceptionIfVariablesDontExist)
148+
private static (bool Valid, string AccessToken) RetrieveAzurePipelinesVariables(bool throwExceptionIfVariablesDontExist)
149149
{
150150
var accessToken = Environment.GetEnvironmentVariable("SYSTEM_ACCESSTOKEN", EnvironmentVariableTarget.Process);
151151
if (string.IsNullOrWhiteSpace(accessToken))

0 commit comments

Comments
 (0)