From 32669655d196fa0983ba23d1c55b8c81883e04d3 Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Tue, 2 Feb 2010 20:12:08 -0800 Subject: [PATCH] array: Fix typo in comment. --- src/libpspp/array.c | 4 ++-- src/libpspp/array.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/libpspp/array.c b/src/libpspp/array.c index 6df2a2d8..942974c8 100644 --- a/src/libpspp/array.c +++ b/src/libpspp/array.c @@ -1,5 +1,5 @@ /* PSPP - a program for statistical analysis. - Copyright (C) 1997-9, 2000 Free Software Foundation, Inc. + Copyright (C) 1997-9, 2000, 2010 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -370,7 +370,7 @@ insert_range (void *array_, size_t count, size_t size, /* Makes room for a new element at IDX in ARRAY, which initially consists of COUNT elements of SIZE bytes each, by shifting elements IDX...COUNT (exclusive) to the right by one - positions. */ + position. */ void insert_element (void *array, size_t count, size_t size, size_t idx) diff --git a/src/libpspp/array.h b/src/libpspp/array.h index 109aee4c..dc17fbd7 100644 --- a/src/libpspp/array.h +++ b/src/libpspp/array.h @@ -118,7 +118,7 @@ void insert_range (void *array, size_t count, size_t size, /* Makes room for a new element at IDX in ARRAY, which initially consists of COUNT elements of SIZE bytes each, by shifting elements IDX...COUNT (exclusive) to the right by one - positions. */ + position. */ void insert_element (void *array, size_t count, size_t size, size_t idx); -- 2.30.2