diff --git a/doc/ref/ChangeLog b/doc/ref/ChangeLog index c4a5782df..53b2b620b 100644 --- a/doc/ref/ChangeLog +++ b/doc/ref/ChangeLog @@ -1,3 +1,8 @@ +2007-05-16 Ludovic Courtès + + * posix.texi (Network Sockets and Communication): Fixed typo: + `make-socket-object' instead of `make-socket-address'. + 2007-03-08 Kevin Ryde * api-compound.texi (Structures): Revise and expand variously, add diff --git a/doc/ref/posix.texi b/doc/ref/posix.texi index 53b353eb7..b9552865f 100644 --- a/doc/ref/posix.texi +++ b/doc/ref/posix.texi @@ -2903,7 +2903,7 @@ automatically, if not already bound. @example (bind sock AF_INET INADDR_ANY 12345) -(bind sock (make-socket-object AF_INET INADDR_ANY 12345)) +(bind sock (make-socket-address AF_INET INADDR_ANY 12345)) @end example @end deffn