Skip to content

Commit

Permalink
fix grammar (Azure#4175)
Browse files Browse the repository at this point in the history
Co-authored-by: Feng Zhou <fenzhou@microsoft.com>
  • Loading branch information
azure-sdk and fengzhou-msft committed Dec 9, 2022
1 parent 68e9dc9 commit ae19eca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions eng/common/scripts/Helpers/ApiView-Helpers.ps1
Expand Up @@ -42,12 +42,12 @@ function Check-ApiReviewStatus($packageName, $packageVersion, $language, $url, $
{
Write-Host "API Review is approved for package $($packageName)"
}
else if ($response.StatusCode -eq '202')
elseif ($response.StatusCode -eq '202')
{
Write-Host "Package name $($packageName) is not yet approved by an SDK API approver. Package name must be approved to release a beta version if $($packageName) was never released a stable version."
Write-Host "You can check http://aka.ms/azsdk/engsys/apireview/faq for more details on package name Approval."
}
else if ($response.StatusCode -eq '201')
elseif ($response.StatusCode -eq '201')
{
Write-Warning "API Review is not approved for package $($packageName). Release pipeline will fail if API review is not approved for a stable version release."
Write-Host "You can check http://aka.ms/azsdk/engsys/apireview/faq for more details on API Approval."
Expand Down

0 comments on commit ae19eca

Please sign in to comment.