svn commit: r40186 - head/en_US.ISO8859-1/books/arch-handbook/driverbasics

Eitan Adler eadler at FreeBSD.org
Thu Nov 29 13:14:00 UTC 2012


Author: eadler
Date: Thu Nov 29 13:13:59 2012
New Revision: 40186
URL: http://svnweb.freebsd.org/changeset/doc/40186

Log:
  Fix typos
  
  Submitted by:	bjk
  Approved by:	bcr (mentor)

Modified:
  head/en_US.ISO8859-1/books/arch-handbook/driverbasics/chapter.xml

Modified: head/en_US.ISO8859-1/books/arch-handbook/driverbasics/chapter.xml
==============================================================================
--- head/en_US.ISO8859-1/books/arch-handbook/driverbasics/chapter.xml	Thu Nov 29 11:23:01 2012	(r40185)
+++ head/en_US.ISO8859-1/books/arch-handbook/driverbasics/chapter.xml	Thu Nov 29 13:13:59 2012	(r40186)
@@ -348,8 +348,8 @@ echo_write(struct cdev *dev __unused, st
 	/* Copy the string in from user memory to kernel memory */
 
 	/*
-	 * We either write from the beginning or are appending - do
-	 * not allow ranom access.
+	 * We either write from the beginning or are appending -- do
+	 * not allow random access.
 	 */
 	if (uio-<uio_offset != 0 && (uio-<uio_offset != echomsg-<len))
 		return (EINVAL);


More information about the svn-doc-all mailing list