From f0af6b7d57c8b182f359f0f6cf697539838b4ef3 Mon Sep 17 00:00:00 2001 From: Nils Adermann Date: Mon, 18 Apr 2011 22:48:51 +0200 Subject: [PATCH] It's called a repository, not a registry --- src/Composer/Repository/ComposerRepository.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Composer/Repository/ComposerRepository.php b/src/Composer/Repository/ComposerRepository.php index c4ca9189a..0dd38d2ce 100644 --- a/src/Composer/Repository/ComposerRepository.php +++ b/src/Composer/Repository/ComposerRepository.php @@ -31,7 +31,7 @@ class ComposerRepository extends ArrayRepository parent::initialize(); $packages = @json_decode(file_get_contents($this->url.'/packages.json'), true); if (!$packages) { - throw new \UnexpectedValueException('Could not parse package list from the '.$this->url.' registry'); + throw new \UnexpectedValueException('Could not parse package list from the '.$this->url.' repository'); } foreach ($packages as $data) {