From patchwork Tue Oct 13 13:24:26 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Namhyung Kim X-Patchwork-Id: 529736 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id CF95E1402A8 for ; Wed, 14 Oct 2015 00:28:38 +1100 (AEDT) Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; secure) header.d=sourceware.org header.i=@sourceware.org header.b=NTH6fVl4; dkim-atps=neutral DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:from:to:subject:date:message-id; q=dns; s= default; b=yBcO38p++PwwYUdeOe7+yUMUcZCZDyh92YwZ/1OykBC/bdOQj9kVE kaltt+Ut/zFXUw68DveDvL06O640DZKCsf6v5e2Gn+3/PtvzwMiGxGMnhav1nIiF 3u5UyKGwy33uGDkl19a9J4b5Kza9B/dqAnqTgLaWYdg67/Dfg1OjII= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:from:to:subject:date:message-id; s=default; bh=DfTuMs0wUeXWMKJU8w9uTV+MOqo=; b=NTH6fVl4vz7Pg3i28l9DySyBFkkR Suy8IwJ4d/qH3t1gnBqi10HWNvjxyPqgVYuNKT0NdywuV6aD2VoRIacDlKXrHhhD dZe8mfZ78K78vEoMiu5N51CAqesBylt2gyDaaLP6kfPdhnNBks2o6HCabEd3vnPD dlO4YKtugIRHzZE= Received: (qmail 26514 invoked by alias); 13 Oct 2015 13:28:31 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Delivered-To: mailing list libc-alpha@sourceware.org Received: (qmail 26501 invoked by uid 89); 13 Oct 2015 13:28:30 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.6 required=5.0 tests=BAYES_00, FREEMAIL_FROM, RCVD_IN_DNSWL_LOW, SPF_PASS autolearn=ham version=3.3.2 X-HELO: mail-pa0-f50.google.com X-Received: by 10.68.237.69 with SMTP id va5mr40104698pbc.40.1444742906662; Tue, 13 Oct 2015 06:28:26 -0700 (PDT) From: Namhyung Kim To: libc-alpha@sourceware.org Subject: [PATCH] Fix a typo in argp manual Date: Tue, 13 Oct 2015 22:24:26 +0900 Message-Id: <1444742666-25273-1-git-send-email-namhyung@gmail.com> The struct argp_children should argp_child. * manaual/argp.texi: Fix typo. --- manual/argp.texi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manual/argp.texi b/manual/argp.texi index be1d158..dae6809 100644 --- a/manual/argp.texi +++ b/manual/argp.texi @@ -202,7 +202,7 @@ explaining what the program does. Documentation printed after the options describe behavior in more detail. @item const struct argp_child *children -A pointer to a vector of @code{argp_children} structures. This pointer +A pointer to a vector of @code{argp_child} structures. This pointer specifies which additional argp parsers should be combined with this one. @xref{Argp Children}.