diff doc/interpreter/contrib.txi @ 16816:12005245b645

doc: Periodic grammarcheck of documentation. * doc/interpreter/basics.txi, doc/interpreter/container.txi, doc/interpreter/contrib.txi, doc/interpreter/diagperm.txi, doc/interpreter/errors.txi, doc/interpreter/install.txi, doc/interpreter/sparse.txi, libinterp/corefcn/ellipj.cc, libinterp/corefcn/mappers.cc, libinterp/corefcn/regexp.cc, libinterp/corefcn/tril.cc, libinterp/dldfcn/__init_fltk__.cc, libinterp/dldfcn/fftw.cc, libinterp/interpfcn/dirfns.cc, libinterp/interpfcn/input.cc, libinterp/octave-value/ov-fcn-inline.cc, libinterp/octave-value/ov-struct.cc, scripts/@ftp/cd.m, scripts/general/interp1.m, scripts/general/num2str.m, scripts/image/ind2rgb.m, scripts/image/rgb2ind.m, scripts/io/importdata.m, scripts/io/textread.m, scripts/java/javamem.m, scripts/linear-algebra/condest.m, scripts/linear-algebra/onenormest.m, scripts/miscellaneous/error_ids.m, scripts/miscellaneous/getfield.m, scripts/miscellaneous/setfield.m, scripts/plot/area.m, scripts/plot/pcolor.m, scripts/plot/stairs.m, scripts/set/powerset.m, scripts/sparse/bicg.m, scripts/sparse/bicgstab.m, scripts/sparse/cgs.m, scripts/specfun/ellipke.m, scripts/special-matrix/gallery.m, scripts/strings/strjoin.m, scripts/strings/strsplit.m, scripts/testfun/__have_feature__.m, scripts/testfun/__printf_assert__.m, scripts/testfun/__prog_output_assert__.m, scripts/testfun/__run_test_suite__.m: grammarcheck documentation.
author Rik <rik@octave.org>
date Sat, 22 Jun 2013 19:47:32 -0700
parents aac60c9bfc77
children a4969508008e
line wrap: on
line diff
--- a/doc/interpreter/contrib.txi
+++ b/doc/interpreter/contrib.txi
@@ -89,13 +89,15 @@
 @end example
 
 You may want to get familiar with Mercurial queues to manage your
-changesets. For working with queues you have to activate the extension
+changesets.  For working with queues you have to activate the extension
 mq with the following entry in Mercurials config file @file{.hgrc} (or
 @file{Mercurial.ini} on Windows):
 
 @example
+@group
 [extensions]
 mq=
+@end group
 @end example
 
 Here is a slightly more complex example using Mercurial
@@ -138,17 +140,20 @@
 The following entries in the @file{.hgrc} are recommended
 
 @example
+@group
 [extensions]
 graphlog=
 color=
 progress=
 pager=
+@end group
 @end example
 
 For the colour extension, default colour and formatting
 of @code{hg status} can be modified by
 
 @example
+@group
 [color]
 status.modified = magenta bold
 status.added = green bold
@@ -156,13 +161,15 @@
 status.deleted = cyan bold
 status.unknown = black  bold
 status.ignored = black bold
+@end group
 @end example
 
 Sometimes a few further improvements for the pager extension are
-necessary. The following options should not be enabled unless paging
+necessary.  The following options should not be enabled unless paging
 isn't working correctly:
 
 @example
+@group
 [pager]
 # Some options for the less pager, see less(1) for their meaning.
 pager = LESS='FSRX' less
@@ -171,11 +178,12 @@
 # for them
 attend = tags, help, annotate, cat, diff, export, status, \
          outgoing, incoming
+@end group
 @end example
 
 Enabling the described extensions should immediately lead to a difference
-when using the command line version of hg. Of these options, the only one
-that enables a new command is graphlog. It is recommanded that you use the
+when using the command line version of hg.  Of these options, the only one
+that enables a new command is graphlog.  It is recommanded that you use the
 command @code{hg glog} instead of @code{hg log} for a better feel
 what commits are being based on.