VirtualBox

Ignore:
Timestamp:
Oct 28, 2010 9:27:05 AM (14 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
67140
Message:

*: spelling fixes, thanks Timeless!

Location:
trunk/src/VBox/Runtime/common/string
Files:
11 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Runtime/common/string/base64.cpp

    r33529 r33540  
    229229 * @param   pszString       The Base64 string. Whether the entire string or
    230230 *                          just the start of the string is in Base64 depends
    231  *                          on wther ppszEnd is specified or not.
     231 *                          on whether ppszEnd is specified or not.
    232232 * @param   pvData          Where to store the decoded data.
    233233 * @param   cbData          The size of the output buffer that pvData points to.
    234234 * @param   pcbActual       Where to store the actual number of bytes returned.
    235235 *                          Optional.
    236  * @param   ppszEnd         Indicats that the string may contain other stuff
     236 * @param   ppszEnd         Indicates that the string may contain other stuff
    237237 *                          after the Base64 encoded data when not NULL. Will
    238238 *                          be set to point to the first char that's not part of
  • trunk/src/VBox/Runtime/common/string/memmove.asm

    r28800 r33540  
    6060        ; Decide which direction to perform the copy in.
    6161        ;
    62 %if 1 ; keep it simpe for now.
     62%if 1 ; keep it simple for now.
    6363        cmp     xDI, xSI
    6464        jnb     .backward
  • trunk/src/VBox/Runtime/common/string/simplepattern.cpp

    r28800 r33540  
    5353            case '*':
    5454            {
    55                 /* collapse '*' and '?', they are supurfluous */
     55                /* collapse '*' and '?', they are superfluous */
    5656                while ((chPat = *++pszPattern) == '*' || chPat == '?')
    5757                    /* nothing */;
     
    110110            case '*':
    111111            {
    112                 /* Collapse '*' and '?', they are supurfluous. End of the pattern == match.  */
     112                /* Collapse '*' and '?', they are superfluous. End of the pattern == match.  */
    113113                do
    114114                {
  • trunk/src/VBox/Runtime/common/string/strcache.cpp

    r30320 r33540  
    7474    /** Pointer to the main string cache structure. */
    7575    struct RTSTRCACHEINT   *pCache;
    76     /** Padding to align the entries on a 32-byte boundrary. */
     76    /** Padding to align the entries on a 32-byte boundary. */
    7777    uint32_t                au32Padding[8 - (ARCH_BITS == 64) - 4];
    7878    /** The index of the first unused entry. */
  • trunk/src/VBox/Runtime/common/string/strformat.cpp

    r33496 r33540  
    190190
    191191    /*
    192      * Determin value length
     192     * Determine value length
    193193     */
    194194    cchValue = 0;
  • trunk/src/VBox/Runtime/common/string/strformattype.cpp

    r28800 r33540  
    401401
    402402/**
    403  * Formats a type using a registerd callback handler.
     403 * Formats a type using a registered callback handler.
    404404 *
    405405 * This will handle %R[type].
  • trunk/src/VBox/Runtime/common/string/stringalloc.cpp

    r32047 r33540  
    190190
    191191    /*
    192      * Determin the length of each string and calc the new total.
     192     * Determine the length of each string and calc the new total.
    193193     */
    194194    struct RTStrAAppendExNVStruct
  • trunk/src/VBox/Runtime/common/string/strspace.cpp

    r30611 r33540  
    102102 *
    103103 * @returns true on success.
    104  * @returns false if the string collieded with an existing string.
     104 * @returns false if the string collided with an existing string.
    105105 * @param   pStrSpace       The space to insert it into.
    106106 * @param   pStr            The string node.
  • trunk/src/VBox/Runtime/common/string/strtonum.cpp

    r28800 r33540  
    11/* $Id$ */
    22/** @file
    3  * IPRT - String To Number Convertion.
     3 * IPRT - String To Number Conversion.
    44 */
    55
     
    9393 *
    9494 * @returns iprt status code.
    95  *          Warnings are used to indicate convertion problems.
     95 *          Warnings are used to indicate conversion problems.
    9696 * @retval  VWRN_NUMBER_TOO_BIG
    9797 * @retval  VWRN_NEGATIVE_UNSIGNED
     
    217217 *
    218218 * @returns iprt status code.
    219  *          Warnings are used to indicate convertion problems.
     219 *          Warnings are used to indicate conversion problems.
    220220 * @retval  VWRN_NUMBER_TOO_BIG
    221221 * @retval  VWRN_NEGATIVE_UNSIGNED
     
    273273 *
    274274 * @returns iprt status code.
    275  *          Warnings are used to indicate convertion problems.
     275 *          Warnings are used to indicate conversion problems.
    276276 * @retval  VWRN_NUMBER_TOO_BIG
    277277 * @retval  VWRN_NEGATIVE_UNSIGNED
     
    308308 *
    309309 * @returns iprt status code.
    310  *          Warnings are used to indicate convertion problems.
     310 *          Warnings are used to indicate conversion problems.
    311311 * @retval  VWRN_NUMBER_TOO_BIG
    312312 * @retval  VWRN_NEGATIVE_UNSIGNED
     
    360360 *
    361361 * @returns iprt status code.
    362  *          Warnings are used to indicate convertion problems.
     362 *          Warnings are used to indicate conversion problems.
    363363 * @retval  VWRN_NUMBER_TOO_BIG
    364364 * @retval  VWRN_NEGATIVE_UNSIGNED
     
    395395 *
    396396 * @returns iprt status code.
    397  *          Warnings are used to indicate convertion problems.
     397 *          Warnings are used to indicate conversion problems.
    398398 * @retval  VWRN_NUMBER_TOO_BIG
    399399 * @retval  VWRN_NEGATIVE_UNSIGNED
     
    447447 *
    448448 * @returns iprt status code.
    449  *          Warnings are used to indicate convertion problems.
     449 *          Warnings are used to indicate conversion problems.
    450450 * @retval  VWRN_NUMBER_TOO_BIG
    451451 * @retval  VWRN_NEGATIVE_UNSIGNED
     
    482482 *
    483483 * @returns iprt status code.
    484  *          Warnings are used to indicate convertion problems.
     484 *          Warnings are used to indicate conversion problems.
    485485 * @retval  VWRN_NUMBER_TOO_BIG
    486486 * @retval  VWRN_NEGATIVE_UNSIGNED
     
    539539 *
    540540 * @returns iprt status code.
    541  *          Warnings are used to indicate convertion problems.
     541 *          Warnings are used to indicate conversion problems.
    542542 * @retval  VWRN_NUMBER_TOO_BIG
    543543 * @retval  VWRN_TRAILING_CHARS
     
    658658 *
    659659 * @returns iprt status code.
    660  *          Warnings are used to indicate convertion problems.
     660 *          Warnings are used to indicate conversion problems.
    661661 * @retval  VWRN_NUMBER_TOO_BIG
    662662 * @retval  VINF_SUCCESS
     
    713713 *
    714714 * @returns iprt status code.
    715  *          Warnings are used to indicate convertion problems.
     715 *          Warnings are used to indicate conversion problems.
    716716 * @retval  VWRN_NUMBER_TOO_BIG
    717717 * @retval  VWRN_TRAILING_CHARS
     
    748748 *
    749749 * @returns iprt status code.
    750  *          Warnings are used to indicate convertion problems.
     750 *          Warnings are used to indicate conversion problems.
    751751 * @retval  VWRN_NUMBER_TOO_BIG
    752752 * @retval  VINF_SUCCESS
     
    800800 *
    801801 * @returns iprt status code.
    802  *          Warnings are used to indicate convertion problems.
     802 *          Warnings are used to indicate conversion problems.
    803803 * @retval  VWRN_NUMBER_TOO_BIG
    804804 * @retval  VWRN_TRAILING_CHARS
     
    835835 *
    836836 * @returns iprt status code.
    837  *          Warnings are used to indicate convertion problems.
     837 *          Warnings are used to indicate conversion problems.
    838838 * @retval  VWRN_NUMBER_TOO_BIG
    839839 * @retval  VINF_SUCCESS
     
    887887 *
    888888 * @returns iprt status code.
    889  *          Warnings are used to indicate convertion problems.
     889 *          Warnings are used to indicate conversion problems.
    890890 * @retval  VWRN_NUMBER_TOO_BIG
    891891 * @retval  VWRN_TRAILING_CHARS
     
    922922 *
    923923 * @returns iprt status code.
    924  *          Warnings are used to indicate convertion problems.
     924 *          Warnings are used to indicate conversion problems.
    925925 * @retval  VWRN_NUMBER_TOO_BIG
    926926 * @retval  VINF_SUCCESS
  • trunk/src/VBox/Runtime/common/string/uniread.cpp

    r28876 r33540  
    152152 *
    153153 * @returns Pointer to the next field.
    154  * @param   ppsz        Where to get and store the string postition.
     154 * @param   ppsz        Where to get and store the string position.
    155155 */
    156156static char *NextField(char **ppsz)
     
    265265
    266266/**
    267  * For converting the decompisition mappings field and similar.
     267 * For converting the decomposition mappings field and similar.
    268268 *
    269269 * @returns Mapping array or NULL if none.
  • trunk/src/VBox/Runtime/common/string/utf-8.cpp

    r31420 r33540  
    646646        else
    647647        {
    648             /* generate surrugate pair */
     648            /* generate surrogate pair */
    649649            Assert((uch & (RT_BIT(7) | RT_BIT(6) | RT_BIT(5) | RT_BIT(4) | RT_BIT(3))) == (RT_BIT(7) | RT_BIT(6) | RT_BIT(5) | RT_BIT(4)));
    650650            RTUNICP uc =           (puch[3] & 0x3f)
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette