From 3a68731f51f8283e7abc3f4edf6f93a570aafa7e Mon Sep 17 00:00:00 2001
From: Eitan Adler <eadler@FreeBSD.org>
Date: Thu, 14 Feb 2013 14:20:32 +0000
Subject: [PATCH] Minor wording niggles

Submitted by:	bjk
Approved by:	bcr (mentor)
---
 .../books/arch-handbook/driverbasics/chapter.xml            | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/en_US.ISO8859-1/books/arch-handbook/driverbasics/chapter.xml b/en_US.ISO8859-1/books/arch-handbook/driverbasics/chapter.xml
index 2335d0f5e8..d3b98d5c92 100644
--- a/en_US.ISO8859-1/books/arch-handbook/driverbasics/chapter.xml
+++ b/en_US.ISO8859-1/books/arch-handbook/driverbasics/chapter.xml
@@ -139,8 +139,8 @@ DECLARE_MODULE(skeleton, skel_mod, SI_SUB_KLD, SI_ORDER_ANY);</programlisting>
     <sect2>
       <title>Makefile</title>
 
-      <para>FreeBSD provides a makefile include to
-	quickly compile a kernel addition.</para>
+      <para>&os; provides a system makefile to simplify compiling a
+      kernel module.</para>
 
       <programlisting>SRCS=skeleton.c
 KMOD=skeleton
@@ -205,7 +205,7 @@ KMOD=skeleton
       the source tree.</para>
 
     <para>This simple example pseudo-device remembers whatever values
-      that are written to it and can then echo them back when
+      are written to it and can then echo them back when
       read.</para>
 
     <example>