Ticket #1533: str-bitwise-typos.patch

File str-bitwise-typos.patch, 1.0 KB (added by tcurtis, 12 years ago)
  • src/string/api.c

     
    16661666=item C<STRING * Parrot_str_bitwise_and(PARROT_INTERP, const STRING *s1, const 
    16671667STRING *s2, STRING **dest)> 
    16681668 
    1669 Performs a bitwise C<AND> on two Parrot string, performing type and encoding 
    1670 conversions if necessary. If the second string is not C<NULL> then it is 
     1669Performs a bitwise C<AND> on two Parrot strings, performing type and encoding 
     1670conversions if necessary. If the third string is not C<NULL> then it is 
    16711671reused.  Otherwise a new Parrot string is created. 
    16721672 
    16731673=cut 
     
    18951895STRING *s2, STRING **dest)> 
    18961896 
    18971897Performs a bitwise C<XOR> on two Parrot strings, performing type and encoding 
    1898 conversions if necessary. If the second string is not C<NULL>, then it is 
     1898conversions if necessary. If the third string is not C<NULL>, then it is 
    18991899reused.  Otherwise a new Parrot string is created. 
    19001900 
    19011901=cut