From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id F33081388C2 for ; Sun, 20 Dec 2015 00:17:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AA7E121C008; Sun, 20 Dec 2015 00:17:42 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id CAE8D21C008 for ; Sun, 20 Dec 2015 00:17:41 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 85B613407D2 for ; Sun, 20 Dec 2015 00:17:40 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8B175CEA for ; Sun, 20 Dec 2015 00:17:38 +0000 (UTC) From: "Michael Orlitzky" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Orlitzky" Message-ID: <1450568078.313a8dafa0a6fd39c2acd27ab39f6d7b119b7835.mjo@gentoo> Subject: [gentoo-commits] proj/eselect-php:master commit in: src/ X-VCS-Repository: proj/eselect-php X-VCS-Files: src/php.eselect.in X-VCS-Directories: src/ X-VCS-Committer: mjo X-VCS-Committer-Name: Michael Orlitzky X-VCS-Revision: 313a8dafa0a6fd39c2acd27ab39f6d7b119b7835 X-VCS-Branch: master Date: Sun, 20 Dec 2015 00:17:38 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: ee4bf439-7dec-4343-a74e-9f4d9b13346c X-Archives-Hash: a9827efa37e1be8dabe67a59f5f50985 commit: 313a8dafa0a6fd39c2acd27ab39f6d7b119b7835 Author: Michael Orlitzky gentoo org> AuthorDate: Sat Dec 19 23:34:38 2015 +0000 Commit: Michael Orlitzky gentoo org> CommitDate: Sat Dec 19 23:34:38 2015 +0000 URL: https://gitweb.gentoo.org/proj/eselect-php.git/commit/?id=313a8daf Fix documentation for the get_sapi_active_target() function. The documentation for the get_sapi_active_target() was copy/pasted and never updated. Whoops. It's been fixed. src/php.eselect.in | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/php.eselect.in b/src/php.eselect.in index fff7784..a2266c5 100644 --- a/src/php.eselect.in +++ b/src/php.eselect.in @@ -196,17 +196,17 @@ find_targets_phpdbg() { } -# Find the active (selected) version of the apache2 module. Used to -# decorate the output of the `eselect php list apache2` command. +# Find the active (selected) target for the given SAPI. This is used +# to decorate the output of the `eselect php list ` command. # # INPUT: # -# None. +# The name of a SAPI. # # OUTPUT: # -# The "display name" of the active apache2 module. For example, -# "php5.6" or "php7.0". +# The "display name" of the active target for the given SAPI. For +# example, "php5.6" or "php7.0". # get_sapi_active_target() { local sapi="${1}"