From patchwork Tue Nov 5 22:03:25 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: FX Coudert X-Patchwork-Id: 288661 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)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id CAAB92C0334 for ; Wed, 6 Nov 2013 09:03:53 +1100 (EST) DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:from :content-type:subject:date:message-id:cc:to:mime-version; q=dns; s=default; b=kxxfUrP9jvTqmh0oURsq5T4yPRcaRvZ5NYCu+4hMURY9CD3FTf DLLeCFF+dBhx2ZVhPQ0TrDi3XFywttOPS4u5eYGPz8M5pdXKqdG/9FByj3F4oA5V FpNkG3dPnz4ppHsTEQ/o2dkYHk6cmhJsTs0jiFGplsFhcNEOqNlbprtQo= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:from :content-type:subject:date:message-id:cc:to:mime-version; s= default; bh=BTpV8vrTBEcnzH/sxt4znKIwbzU=; b=vrjbS7uSIOmZOhCNAuwl 3kjwpWUevAl8GwSc6UHlGdIPdLHhGPiCyPDKMrBk+m5pnowBXfN/sItDMRc1Qtav cHv1eaaw4u6cql0B6l+/1XiyQR8uBNIrWlAOAt3ETsexkmKM3CZ/aLQqHcEBW/Vi 9C2Vai3BFTzF5Fitxp+DqGQ= Received: (qmail 12797 invoked by alias); 5 Nov 2013 22:03:39 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Delivered-To: mailing list gcc-patches@gcc.gnu.org Received: (qmail 12779 invoked by uid 89); 5 Nov 2013 22:03:39 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-0.4 required=5.0 tests=AWL, BAYES_50, FREEMAIL_FROM, RDNS_NONE, SPF_PASS, URIBL_BLOCKED autolearn=no version=3.3.2 X-Spam-User: qpsmtpd, 2 recipients X-HELO: mail-wg0-f45.google.com Received: from Unknown (HELO mail-wg0-f45.google.com) (74.125.82.45) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-SHA encrypted) ESMTPS; Tue, 05 Nov 2013 22:03:37 +0000 Received: by mail-wg0-f45.google.com with SMTP id z12so4133527wgg.0 for ; Tue, 05 Nov 2013 14:03:27 -0800 (PST) X-Received: by 10.180.93.137 with SMTP id cu9mr18657083wib.40.1383689007743; Tue, 05 Nov 2013 14:03:27 -0800 (PST) Received: from vire.home (89-93-42-136.hfc.dyn.abo.bbox.fr. [89.93.42.136]) by mx.google.com with ESMTPSA id w10sm18070451wia.4.2013.11.05.14.03.26 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Tue, 05 Nov 2013 14:03:26 -0800 (PST) From: FX Subject: [fortran,doc] Fix typo in doc Date: Tue, 5 Nov 2013 23:03:25 +0100 Message-Id: <5C1E3211-640C-40D9-BE46-172C144474F6@gmail.com> Cc: gcc-patches@gcc.gnu.org To: fortran@gcc.gnu.org Mime-Version: 1.0 (Mac OS X Mail 7.0 \(1812\)) I think the doc says “assumed-shape” where it means “assumed-rank”. Is that OK? FX 2013-11-05 Francois-Xavier Coudert * gfortran.texi: Fix typo. Index: gfortran.texi =================================================================== --- gfortran.texi (revision 204389) +++ gfortran.texi (working copy) @@ -2624,7 +2624,7 @@ other hand, assumed-type assumed-rank du (@code{TYPE(*), DIMENSION(..)}) allow for both scalars and arrays, but require special code on the callee side to handle the array descriptor. -@item Assumed-shape arrays (@code{DIMENSION(..)}) as dummy argument +@item Assumed-rank arrays (@code{DIMENSION(..)}) as dummy argument allow that scalars and arrays of any rank can be passed as actual argument. As the Technical Specification does not provide for direct means to operate with them, they have to be used either from the C side