aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJauhien Piatlicki <jauhien@gentoo.org>2014-10-11 21:19:23 +0200
committerJauhien Piatlicki <jauhien@gentoo.org>2014-10-11 21:19:23 +0200
commit1ce69469d7f58c5e38e185f6f9468a01d505f4b8 (patch)
tree15e3338a4943aedcf27f07140dc9b09f262f19bb
parentsplit out emacs, vim and zsh stuff and prepare for handling of rust compilers... (diff)
downloadeselect-rust-1ce69469d7f58c5e38e185f6f9468a01d505f4b8.tar.gz
eselect-rust-1ce69469d7f58c5e38e185f6f9468a01d505f4b8.tar.bz2
eselect-rust-1ce69469d7f58c5e38e185f6f9468a01d505f4b8.zip
write language name from the capital letter
-rw-r--r--src/modules/rust.eselect12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/modules/rust.eselect b/src/modules/rust.eselect
index dc8c18c..0691925 100644
--- a/src/modules/rust.eselect
+++ b/src/modules/rust.eselect
@@ -2,7 +2,7 @@
# Copyright 2014 Gentoo Foundation
# Distributed under the terms of the GNU GPL version 2 or later
-DESCRIPTION="Manage the rust compiler versions"
+DESCRIPTION="Manage the Rust compiler versions"
MAINTAINER="jauhien@gentoo.org"
VERSION="0.2"
@@ -94,13 +94,13 @@ set_version() {
### list action ###
describe_list() {
- echo "List available rust versions"
+ echo "List available Rust versions"
}
do_list() {
local i targets=( $(find_targets) )
- write_list_start "Available rust versions:"
+ write_list_start "Available Rust versions:"
for (( i = 0; i < ${#targets[@]}; i++ )); do
# highlight the target where the symlink is pointing to
[[ rustc-$(get_postfix ${targets[i]}) = \
@@ -113,7 +113,7 @@ do_list() {
### set action ###
describe_set() {
- echo "Set active rust version"
+ echo "Set active Rust version"
}
describe_set_parameters() {
@@ -134,7 +134,7 @@ do_set() {
### update action ###
describe_update() {
- echo "Switch to the most recent rust compiler"
+ echo "Switch to the most recent Rust compiler"
}
describe_update_options() {
@@ -166,7 +166,7 @@ do_update() {
### unset action ###
describe_unset() {
- echo "Unset active rust version"
+ echo "Unset active Rust version"
}
describe_unset_options() {