Use <quote> elements over '"' where appropriate, and other elements over

'"' where that makes more sense.
This commit is contained in:
Ceri Davies 2007-05-04 12:45:05 +00:00
parent 389924ee76
commit c27a266461
Notes: svn2git 2020-12-08 03:00:23 +00:00
svn path=/head/; revision=30147

View file

@ -168,7 +168,7 @@ options KDB_TRACE</programlisting>
mean the latest file version could be lost if a panic occurs
before it is committed to storage. Disabling softupdates
yields a great performance hit, and still does not guarantee
data consistency. Mounting filesystem with the "sync" option
data consistency. Mounting filesystem with the <quote>sync</quote> option
is needed for that. For a compromise, the softupdates cache delays can
be shortened. There are three sysctl's that are useful for
this (best to be set in
@ -319,7 +319,7 @@ KMOD=geom_journal
error).</para>
<para>The asynchronous programming model (also
called "event-driven") is somewhat harder
called <quote>event-driven</quote>) is somewhat harder
than the much more used imperative one used in userland
(at least it takes a
while to get used to it). In some cases the helper routines
@ -353,7 +353,7 @@ KMOD=geom_journal
can be combined in a tree-like fashion. Instances of GEOM classes are
called <emphasis>geoms</emphasis>.</para>
<para>Each GEOM class has several "class methods" that get called
<para>Each GEOM class has several <quote>class methods</quote> that get called
when there is no geom instance available (or they are simply not
bound to a single instance):</para>
@ -472,16 +472,16 @@ KMOD=geom_journal
<itemizedlist>
<listitem><para>&man.geom.8; looks in the command-line definition
for the command (usually "label"), and calls a helper
<listitem><para>&man.geom.8; looks in the command-line argument
for the command (usually <option>label</option>), and calls a helper
function.</para></listitem>
<listitem><para>helper function checks parameters and gathers
<listitem><para>The helper function checks parameters and gathers
metadata, which it proceeds to write to all concerned
providers.</para></listitem>
<listitem><para>this "spoils" existing geoms (if any) and
initializes a new round of "tasting" of the providers. The
<listitem><para>This <quote>spoils</quote> existing geoms (if any) and
initializes a new round of <quote>tasting</quote> of the providers. The
intended geom class recognizes the metadata and brings the
geom up.</para></listitem>
@ -585,7 +585,7 @@ KMOD=geom_journal
entities</para></listitem>
<listitem><para><literal>g_event</literal> : Handles all other
cases: creation of geom instances, access counting, "spoil"
cases: creation of geom instances, access counting, <quote>spoil</quote>
events, etc.</para></listitem>
</itemizedlist>