From 04e70564c752adf8ffd34a0a7649cd9171c73a50 Mon Sep 17 00:00:00 2001
From: Daniel Convissor <danielc@php.net>
Date: Mon, 13 Apr 2009 05:40:33 +0000
Subject: [PATCH] * Bitwise: fix ampersands in last commit.

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@278626 c90b9560-bf6c-de11-be94-00142212c4b1
---
 language/operators.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/language/operators.xml b/language/operators.xml
index 6e46210e44..5b8839b041 100644
--- a/language/operators.xml
+++ b/language/operators.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.139 $ -->
+<!-- $Revision: 1.140 $ -->
  <chapter xml:id="language.operators" xmlns="http://docbook.org/ns/docbook">
   <title>Operators</title>
   <simpara>
@@ -445,9 +445,9 @@ $b .= "There!"; // sets $b to "Hello There!", just like $b = $b . "There!";
    <para>
     Use parentheses to ensure the desired
     <link linkend="language.operators.precedence">precedence</link>.
-    For example, <userinput>$a & $b == true</userinput> evaluates
+    For example, <userinput>$a &amp; $b == true</userinput> evaluates
     the equivalency then the bitwise and; while
-    <userinput>($a & $b) == true</userinput> evaluates the bitwise and
+    <userinput>($a &amp; $b) == true</userinput> evaluates the bitwise and
     then the equivalency.
    </para>