mirror of
https://github.com/MariaDB/server.git
synced 2026-05-11 17:40:11 +02:00
General spell fixing in comments and strings
This commit is contained in:
parent
9de6708390
commit
effbe7dd7b
67 changed files with 96 additions and 96 deletions
|
|
@ -457,7 +457,7 @@ static void digits_bounds(decimal_t *from, int *start_result, int *end_result)
|
|||
dec1 *end= from->buf + ROUND_UP(from->intg) + ROUND_UP(from->frac);
|
||||
dec1 *buf_end= end - 1;
|
||||
|
||||
/* find non-zero digit from number begining */
|
||||
/* find non-zero digit from number beginning */
|
||||
while (buf_beg < end && *buf_beg == 0)
|
||||
buf_beg++;
|
||||
|
||||
|
|
@ -468,7 +468,7 @@ static void digits_bounds(decimal_t *from, int *start_result, int *end_result)
|
|||
return;
|
||||
}
|
||||
|
||||
/* find non-zero decimal digit from number begining */
|
||||
/* find non-zero decimal digit from number beginning */
|
||||
if (buf_beg == from->buf && from->intg)
|
||||
{
|
||||
start= DIG_PER_DEC1 - (i= ((from->intg-1) % DIG_PER_DEC1 + 1));
|
||||
|
|
|
|||
|
|
@ -41,7 +41,7 @@ Speciella anv
|
|||
backwards from pos from. pat is not a regex(3) pattern, it is a literal
|
||||
string which must be matched exactly.
|
||||
The result 0 if the pattern was not found else it is the start char of
|
||||
the pattern counted from the begining of the string.
|
||||
the pattern counted from the beginning of the string.
|
||||
|
||||
strappend(dest, len, fill) appends fill-characters to a string so that
|
||||
the result length == len. If the string is longer than len it's
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue