[Nasm-bugs] [Bug 3392682] New: Documentation: Boolean operators description wrong in git 2.15rc12

noreply-nasm at dev.nasm.us noreply-nasm at dev.nasm.us
Fri Jun 26 00:20:59 PDT 2020


https://bugzilla.nasm.us/show_bug.cgi?id=3392682

            Bug ID: 3392682
           Summary: Documentation: Boolean operators description wrong in
                    git 2.15rc12
           Product: NASM
           Version: 2.15 (development)
          Hardware: All
                OS: All
            Status: OPEN
          Severity: minor
          Priority: Medium
         Component: Documentation
          Assignee: nobody at nasm.us
          Reporter: pushbx at ulukai.org
                CC: chang.seok.bae at intel.com, gorcunov at gmail.com,
                    hpa at zytor.com, nasm-bugs at nasm.us
     Obtained from: Unknown

https://repo.or.cz/nasm.git/commitdiff/82fc1bea766b3092383c543920fe0c18983a55fc

+\S{expbor}: \i\c{||}: \i{Boolean OR} Operator
+
+The \c{||} operator gives a boolean OR: it evaluates to 1 if both sides of
+the expression are nonzero, otherwise 0.

This describes AND.

+\S{expbxor}: \i\c{^^}: \i{Boolean XOR} Operator
+
+The \c{^^} operator gives a boolean XOR: it evaluates to 1 if any one side of
+the expression is nonzero, otherwise 0.

This could be clearer.

+\S{expband}: \i\c{&&}: \i{Boolean AND} Operator
+
+The \c{&&} operator gives a boolean AND: it evaluates to 1 if both sides of
+the expression is nonzero, otherwise 0.

Should read "are".

-- 
You are receiving this mail because:
You are watching all bug changes.
You are on the CC list for the bug.


More information about the Nasm-bugs mailing list