Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 29 Nov 2012 13:13:59 +0000 (UTC)
From:      Eitan Adler <eadler@FreeBSD.org>
To:        doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org
Subject:   svn commit: r40186 - head/en_US.ISO8859-1/books/arch-handbook/driverbasics
Message-ID:  <201211291313.qATDDxkP082551@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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-&lt;uio_offset != 0 && (uio-&lt;uio_offset != echomsg-&lt;len))
 		return (EINVAL);



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201211291313.qATDDxkP082551>