about summary refs log tree commit diff
path: root/iconv
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@gmail.com>2011-04-01 10:39:30 -0400
committerUlrich Drepper <drepper@gmail.com>2011-04-01 10:39:30 -0400
commit4c1423edfb036a416c642b39d76370e2f2405bb1 (patch)
tree951fcb2a5ee9e441f49814fca1fd60282f1702d9 /iconv
parent158648c0bdda281e252a27c0200dd0ea6f4e0215 (diff)
downloadglibc-4c1423edfb036a416c642b39d76370e2f2405bb1.tar.gz
glibc-4c1423edfb036a416c642b39d76370e2f2405bb1.tar.xz
glibc-4c1423edfb036a416c642b39d76370e2f2405bb1.zip
Fix typos in comments.
Diffstat (limited to 'iconv')
-rw-r--r--iconv/iconv.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/iconv/iconv.h b/iconv/iconv.h
index 9aebf9bc7b..1d9b79bbae 100644
--- a/iconv/iconv.h
+++ b/iconv/iconv.h
@@ -1,4 +1,4 @@
-/* Copyright (C) 1997, 1998, 1999, 2000, 2003 Free Software Foundation, Inc.
+/* Copyright (C) 1997-2000, 2003, 2011 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
@@ -33,7 +33,7 @@ typedef void *iconv_t;
 /* Allocate descriptor for code conversion from codeset FROMCODE to
    codeset TOCODE.
 
-   This function is a possible cancellation points and therefore not
+   This function is a possible cancellation point and therefore not
    marked with __THROW.  */
 extern iconv_t iconv_open (__const char *__tocode, __const char *__fromcode);
 
@@ -47,7 +47,7 @@ extern size_t iconv (iconv_t __cd, char **__restrict __inbuf,
 
 /* Free resources allocated for descriptor CD for code conversion.
 
-   This function is a possible cancellation points and therefore not
+   This function is a possible cancellation point and therefore not
    marked with __THROW.  */
 extern int iconv_close (iconv_t __cd);