svn commit: r207009 - head/lib/libc/stdlib

Konstantin Belousov kib at FreeBSD.org
Wed Apr 21 19:35:56 UTC 2010


Author: kib
Date: Wed Apr 21 19:35:56 2010
New Revision: 207009
URL: http://svn.freebsd.org/changeset/base/207009

Log:
  C language does not has references, it provides pointers.
  
  Suggested by:	bde
  MFC after:	2 weeks

Modified:
  head/lib/libc/stdlib/realpath.3

Modified: head/lib/libc/stdlib/realpath.3
==============================================================================
--- head/lib/libc/stdlib/realpath.3	Wed Apr 21 19:32:00 2010	(r207008)
+++ head/lib/libc/stdlib/realpath.3	Wed Apr 21 19:35:56 2010	(r207009)
@@ -56,13 +56,13 @@ and
 in
 .Fa pathname ,
 and copies the resulting absolute pathname into
-the memory referenced by
+the memory pointed to by
 .Fa resolved_path .
 The
 .Fa resolved_path
 argument
 .Em must
-refer to a buffer capable of storing at least
+point to a buffer capable of storing at least
 .Dv PATH_MAX
 characters, or be
 .Dv NULL .


More information about the svn-src-all mailing list