From 8f7d402a68b8cb5f16e9f68ffcbfcb0092e08b17 Mon Sep 17 00:00:00 2001 Message-Id: <8f7d402a68b8cb5f16e9f68ffcbfcb0092e08b17.1715439681.git.mdw@distorted.org.uk> From: Mark Wooding Date: Sun, 8 Oct 2000 09:43:11 +0000 Subject: [PATCH] Minor typo fixes. Organization: Straylight/Edgeware From: mdw --- man/darray.3 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/man/darray.3 b/man/darray.3 index 3b796b1..1a8336c 100644 --- a/man/darray.3 +++ b/man/darray.3 @@ -129,7 +129,7 @@ The macro is a valid static initializer for all types of dynamic arrays. For cases where this isn't appropriate, a dynamic array may be initialized using the macro -.BR DA_INIT , +.BR DA_CREATE , passing it the address of the array. .PP Arrays may be disposed of using the @@ -179,7 +179,7 @@ is the base address of the actual array. The elements are stored contiguously starting at this address. An element at index .I i may be referenced using the syntax -.BI DA( a )[ i \fR. +.BI DA( a )[ i ]\fR. .PP The number of elements in the array .I a -- [mdw]