From owner-svn-doc-head@FreeBSD.ORG Thu Nov 29 13:14:00 2012 Return-Path: Delivered-To: svn-doc-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 34577FAA; Thu, 29 Nov 2012 13:14:00 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 171748FC17; Thu, 29 Nov 2012 13:14:00 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qATDDxLB082552; Thu, 29 Nov 2012 13:13:59 GMT (envelope-from eadler@svn.freebsd.org) Received: (from eadler@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qATDDxkP082551; Thu, 29 Nov 2012 13:13:59 GMT (envelope-from eadler@svn.freebsd.org) Message-Id: <201211291313.qATDDxkP082551@svn.freebsd.org> From: Eitan Adler Date: Thu, 29 Nov 2012 13:13:59 +0000 (UTC) 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 X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Nov 2012 13:14:00 -0000 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);