diff --git a/src/Composer/Command/SelfUpdateCommand.php b/src/Composer/Command/SelfUpdateCommand.php
index 2bc36e37a..ea0831818 100644
--- a/src/Composer/Command/SelfUpdateCommand.php
+++ b/src/Composer/Command/SelfUpdateCommand.php
@@ -126,7 +126,7 @@ EOT
$composeUser = posix_getpwuid(posix_geteuid());
$homeOwner = posix_getpwuid(fileowner($home));
if (isset($composeUser['name'], $homeOwner['name']) && $composeUser['name'] !== $homeOwner['name']) {
- $io->writeError('You are running composer as "'.$composeUser['name'].'", while "'.$home.'" is owned by "'.$homeOwner['name'].'"');
+ $io->writeError('You are running Composer as "'.$composeUser['name'].'", while "'.$home.'" is owned by "'.$homeOwner['name'].'"');
}
}
@@ -185,7 +185,7 @@ EOT
if (Composer::VERSION === $updateVersion) {
$io->writeError(
sprintf(
- 'You are already using composer version %s (%s channel).',
+ 'You are already using the latest available Composer version %s (%s channel).',
$updateVersion,
$channelString
)