Commit e3dd06ef by Christian von Roques Committed by Christian von Roques

fix regex-typo in lxc-monitor.sgml.in

To match names beginning with the letters "f" or "b" one can use the regular expression "[fb].*" or "(f|b).*", but not "[f|b].*", which would match strings beginning with "f", "|", or "b". Signed-off-by: 's avatarChristian von Roques <roques@z12.ch>
parent 2569f6f6
......@@ -121,7 +121,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
</varlistentry>
<varlistentry>
<term>lxc-monitor -n '[f|b].*'</term>
<term>lxc-monitor -n '[fb].*'</term>
<listitem>
<para>
will monitor the different states for container with the
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment