diff options
author | Paul Jakma <paul@quagga.net> | 2012-03-08 16:42:31 +0000 |
---|---|---|
committer | Paul Jakma <paul@quagga.net> | 2012-03-08 16:42:31 +0000 |
commit | a20a4060c8b90e3d88ce97d439eee1a38260d7c5 (patch) | |
tree | bf164684241b37dfd5717bfe5b56d4acf69fce3a /doc | |
parent | fa482834ea1a30eff056dbf0f36a6f3262460a08 (diff) |
doc: Fix an apparently no longer legal @itemize @asis
* basic.texi: @asis isn't legal with @itemize apparently, should be @w
according to docs, but @w{} seems to be needed. Fixes doc build error.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/basic.texi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/basic.texi b/doc/basic.texi index 77fceee1..b3b23ca9 100644 --- a/doc/basic.texi +++ b/doc/basic.texi @@ -46,14 +46,14 @@ starting. Config files are generally found in: -@itemize @asis +@itemize @w{} @item @file{@value{INSTALL_PREFIX_ETC}/*.conf} @end itemize Each of the daemons has its own config file. For example, zebra's default config file name is: -@itemize @asis +@itemize @w{} @item @file{@value{INSTALL_PREFIX_ETC}/zebra.conf} @end itemize |