Skip to content

Commit

Permalink
Fix the capitalization of "PyPI"
Browse files Browse the repository at this point in the history
Stands for "Python Package Index", so "I" should be capitalized. Also see https://pypi.org/ for confirmation.
  • Loading branch information
brettcannon authored Nov 16, 2022
1 parent 724a3ce commit 7ffab63
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/utils/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ const types = [
{ value: 'maven', label: 'Maven', provider: 'mavencentral' },
{ value: 'npm', label: 'Npm', provider: 'npmjs' },
{ value: 'nuget', label: 'NuGet', provider: 'nuget' },
{ value: 'pypi', label: 'PyPi', provider: 'pypi' },
{ value: 'pypi', label: 'PyPI', provider: 'pypi' },
{ value: 'gem', label: 'Gem', provider: 'rubygems' },
{ value: 'sourcearchive', label: 'SourceArchive' },
{ value: 'deb', label: 'Deb', provider: 'debian' },
Expand All @@ -125,7 +125,7 @@ const providers = [
{ value: 'github', label: 'GitHub', image: gitImage, type: 'git' },
{ value: 'mavencentral', label: 'MavenCentral', image: mavenImage, type: 'maven' },
{ value: 'nuget', label: 'NuGet', image: nugetImage, type: 'nuget' },
{ value: 'pypi', label: 'PyPi', image: pypiImage, type: 'pypi' },
{ value: 'pypi', label: 'PyPI', image: pypiImage, type: 'pypi' },
{ value: 'rubygems', label: 'RubyGems', image: gemImage, type: 'gem' },
{ value: 'cocoapods', label: 'CocoaPods', image: podImage, type: 'pod' },
{ value: 'cratesio', label: 'Crates.io', image: crateImage, type: 'crate' },
Expand Down

0 comments on commit 7ffab63

Please sign in to comment.