From 7ffab6351ad22c232e16e8f965d382dfe101beb9 Mon Sep 17 00:00:00 2001 From: Brett Cannon Date: Wed, 16 Nov 2022 08:41:50 -0800 Subject: [PATCH] Fix the capitalization of "PyPI" Stands for "Python Package Index", so "I" should be capitalized. Also see https://pypi.org/ for confirmation. --- src/utils/utils.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/utils/utils.js b/src/utils/utils.js index d7e08074..30c0b923 100644 --- a/src/utils/utils.js +++ b/src/utils/utils.js @@ -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' }, @@ -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' },