Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix typos.
  • Loading branch information
Ondřej Bílka committed Aug 29, 2013
1 parent d0721e7 commit 6f65e66
Show file tree
Hide file tree
Showing 33 changed files with 118 additions and 75 deletions.
21 changes: 21 additions & 0 deletions ChangeLog
@@ -1,3 +1,24 @@
2013-08-29 Ondřej Bílka <neleai@seznam.cz>

* argp/argp-help.c: Fix typos.
* argp/argp-parse.c: Likewise.
* debug/backtracesyms.c: Likewise.
* elf/elf.h: Likewise.
* malloc/malloc.c: Likewise.
* nis/nis_print.c: Likewise.
* resolv/res_comp.c: Likewise.
* stdlib/stdlib.h: Likewise.
* sunrpc/clnt_tcp.c: Likewise.
* sunrpc/clnt_udp.c: Likewise.
* sunrpc/clnt_unix.c: Likewise.
* sysdeps/unix/bsd/ptsname.c: Likewise.
* sysdeps/unix/sysv/linux/ifaddrs.c: Likewise.
* sysdeps/unix/sysv/linux/powerpc/libc-start.c: Likewise.
* sysdeps/unix/sysv/linux/powerpc/powerpc32/getcontext-common.S: Likewise.
* sysdeps/unix/sysv/linux/powerpc/powerpc32/setcontext-common.S: Likewise.
* sysdeps/unix/sysv/linux/powerpc/powerpc32/swapcontext-common.S: Likewise.
* sysdeps/unix/sysv/linux/ptsname.c: Likewise.

2013-08-28 Siddhesh Poyarekar <siddhesh@redhat.com>

* nscd/aicache.c (addhstaiX): Use __glibc_unlikely.
Expand Down
10 changes: 5 additions & 5 deletions argp/argp-help.c
Expand Up @@ -160,7 +160,7 @@ static const struct uparam_name uparam_names[] =
};
#define nuparam_names (sizeof (uparam_names) / sizeof (uparam_names[0]))

/* Read user options from the environment, and fill in UPARAMS appropiately. */
/* Read user options from the environment, and fill in UPARAMS appropriately. */
static void
fill_in_uparams (const struct argp_state *state)
{
Expand Down Expand Up @@ -275,11 +275,11 @@ fill_in_uparams (const struct argp_state *state)
-xARG, -yARG, --long1=ARG, --long2=ARG Documentation...
Where ARG will be omitted if there's no argument, for this option, or
will be surrounded by "[" and "]" appropiately if the argument is
optional. The documentation string is word-wrapped appropiately, and if
will be surrounded by "[" and "]" appropriately if the argument is
optional. The documentation string is word-wrapped appropriately, and if
the list of options is long enough, it will be started on a separate line.
If there are no short options for a given option, the first long option is
indented slighly in a way that's supposed to make most long options appear
indented slightly in a way that's supposed to make most long options appear
to be in a separate column.
For example, the following output (from ps):
Expand Down Expand Up @@ -998,7 +998,7 @@ filter_doc (const char *doc, int key, const struct argp *argp,
return doc;
}

/* Prints STR as a header line, with the margin lines set appropiately, and
/* Prints STR as a header line, with the margin lines set appropriately, and
notes the fact that groups should be separated with a blank line. ARGP is
the argp that should dictate any user doc filtering to take place. Note
that the previous wrap margin isn't restored, but the left margin is reset
Expand Down
2 changes: 1 addition & 1 deletion argp/argp-parse.c
Expand Up @@ -410,7 +410,7 @@ convert_options (const struct argp *argp,
return group;
}

/* Find the merged set of getopt options, with keys appropiately prefixed. */
/* Find the merged set of getopt options, with keys appropriately prefixed. */
static void
parser_convert (struct parser *parser, const struct argp *argp, int flags)
{
Expand Down
2 changes: 1 addition & 1 deletion debug/backtracesyms.c
Expand Up @@ -28,7 +28,7 @@
#if __ELF_NATIVE_CLASS == 32
# define WORD_WIDTH 8
#else
/* We assyme 64bits. */
/* We assume 64bits. */
# define WORD_WIDTH 16
#endif

Expand Down
2 changes: 1 addition & 1 deletion elf/elf.h
Expand Up @@ -811,7 +811,7 @@ typedef struct
#define DF_1_EDITED 0x00200000 /* Object is modified after built. */
#define DF_1_NORELOC 0x00400000
#define DF_1_SYMINTPOSE 0x00800000 /* Object has individual interposers. */
#define DF_1_GLOBAUDIT 0x01000000 /* Global auditin required. */
#define DF_1_GLOBAUDIT 0x01000000 /* Global auditing required. */
#define DF_1_SINGLETON 0x02000000 /* Singleton symbols are used. */

/* Flags for the feature selection in DT_FEATURE_1. */
Expand Down
4 changes: 4 additions & 0 deletions libidn/ChangeLog
@@ -1,3 +1,7 @@
2013-08-29 Ondřej Bílka <neleai@seznam.cz>

* stringprep.c: Fix typos.

2013-06-11 Ondřej Bílka <neleai@seznam.cz>

* gunicomp.h: Fix trailing whitespaces.
Expand Down
2 changes: 1 addition & 1 deletion libidn/stringprep.c
Expand Up @@ -563,7 +563,7 @@ stringprep_profile (const char *in,
* @STRINGPREP_CONTAINS_PROHIBITED: String contain code points
* prohibited by the profile.
* @STRINGPREP_BIDI_BOTH_L_AND_RAL: String contain code points with
* conflicting bidirection category.
* conflicting bidirectional category.
* @STRINGPREP_BIDI_LEADTRAIL_NOT_RAL: Leading and trailing character
* in string not of proper bidirectional category.
* @STRINGPREP_BIDI_CONTAINS_PROHIBITED: Contains prohibited code
Expand Down
2 changes: 1 addition & 1 deletion malloc/malloc.c
Expand Up @@ -1167,7 +1167,7 @@ nextchunk-> +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
the malloc code, but "mem" is the pointer that is returned to the
user. "Nextchunk" is the beginning of the next contiguous chunk.
Chunks always begin on even word boundries, so the mem portion
Chunks always begin on even word boundaries, so the mem portion
(which is returned to the user) is also on an even word boundary, and
thus at least double-word aligned.
Expand Down
2 changes: 1 addition & 1 deletion nis/nis_print.c
Expand Up @@ -290,7 +290,7 @@ nis_print_link (const link_obj *obj)
fputs (_("Linked Object Type : "), stdout);
nis_print_objtype (obj->li_rtype);
printf (_("Linked to : %s\n"), obj->li_name);
/* XXX Print the attributs here, if they exists */
/* XXX Print the attributes here, if they exists */
}
libnsl_hidden_def (nis_print_link)

Expand Down
4 changes: 4 additions & 0 deletions ports/ChangeLog.am33
@@ -1,3 +1,7 @@
2013-08-29 Ondřej Bílka <neleai@seznam.cz>

* sysdeps/unix/sysv/linux/am33/bits/fcntl.h: Fix typos.

2013-08-21 Ondřej Bílka <neleai@seznam.cz>

* sysdeps/am33/fpu/fraiseexcpt.c: Fix typos.
Expand Down
10 changes: 10 additions & 0 deletions ports/ChangeLog.ia64
@@ -1,3 +1,13 @@
2013-08-29 Ondřej Bílka <neleai@seznam.cz>

* sysdeps/ia64/fpu/e_acoshl.S: Fix typos.
* sysdeps/ia64/fpu/e_logf.S: Likewise.
* sysdeps/ia64/fpu/e_log.S: Likewise.
* sysdeps/ia64/fpu/libm_lgammaf.S: Likewise.
* sysdeps/ia64/fpu/libm_lgammal.S: Likewise.
* sysdeps/ia64/fpu/s_log1p.S: Likewise.
* sysdeps/ia64/fpu/w_tgammal.S: Likewise.

2013-08-21 Ondřej Bílka <neleai@seznam.cz>

* sysdeps/ia64/fpu/e_atanhl.S: Fix typos.
Expand Down
4 changes: 4 additions & 0 deletions ports/ChangeLog.mips
@@ -1,3 +1,7 @@
2013-08-29 Ondřej Bílka <neleai@seznam.cz>

* sysdeps/mips/sys/asm.h: Fix typos.

2013-08-22 Maciej W. Rozycki <macro@codesourcery.com>

* sysdeps/mips/fpu_control.h: Document bits reserved for
Expand Down
4 changes: 2 additions & 2 deletions ports/sysdeps/ia64/fpu/e_acoshl.S
Expand Up @@ -249,7 +249,7 @@
RODATA
.align 64

// Near 1 path rational aproximation coefficients
// Near 1 path rational approximation coefficients
LOCAL_OBJECT_START(Poly_P)
data8 0xB0978143F695D40F, 0x3FF1 // .84205539791447100108478906277453574946e-4
data8 0xB9800D841A8CAD29, 0x3FF6 // .28305085180397409672905983082168721069e-2
Expand Down Expand Up @@ -655,7 +655,7 @@ GLOBAL_LIBM_ENTRY(acoshl)
};;

{ .mfi
getf.d GR_Arg = FR_Arg // get arument as double (int64)
getf.d GR_Arg = FR_Arg // get argument as double (int64)
fma.s0 FR_Two = f1, f1, f1 // construct 2.0
addl GR_ad_z_1 = @ltoff(Constants_Z_1#),gp // logl tables
}
Expand Down
2 changes: 1 addition & 1 deletion ports/sysdeps/ia64/fpu/e_log.S
Expand Up @@ -134,7 +134,7 @@
// InvX = frcpa(x)
// r = InvX*x - 1
// P(r) = r*((r*A3 - A2) + r^4*((A4 + r*A5) + r^2*(A6 + r*A7)),
// all coefficients are calcutated in quad and rounded to double
// all coefficients are calculated in quad and rounded to double
// precision. A7,A6,A5,A4 are stored in memory whereas A3 and A2
// created with setf.
//
Expand Down
2 changes: 1 addition & 1 deletion ports/sysdeps/ia64/fpu/e_logf.S
Expand Up @@ -159,7 +159,7 @@
//
// 3. How we define is input argument such that |x-1| < 1/256 or not.
//
// To do it we analyze biased exponent and significand of input argment.
// To do it we analyze biased exponent and significand of input argument.
//
// a) First we test is biased exponent equal to 0xFFFE or 0xFFFF (i.e.
// we test is 0.5 <= x < 2). This comparison can be performed using
Expand Down
4 changes: 2 additions & 2 deletions ports/sysdeps/ia64/fpu/libm_lgammaf.S
Expand Up @@ -1064,7 +1064,7 @@ lgammaf_0_1:
{ .mfi
ldfpd FR_Ln2,FR_05 = [GR_ad_Data],16
fma.s1 FR_P32 = FR_P3,FR_r,FR_P2
// input argument cann't be equal to 1.0
// input argument can't be equal to 1.0
cmp.eq p0,p14 = r0,r0
};;
{ .mfi
Expand Down Expand Up @@ -1456,7 +1456,7 @@ lgammaf_negrecursion:
// load coefficients of polynomial approximation
// of ln(GAMMA(x)), x is close to one of negative roots
(p13) ldfpd FR_R3,FR_R2 = [GR_ad_RootCo]
// argumenth for logarithm
// arguments for logarithm
(p10) fma.s1 FR_Req = FR_Req,FR_Xp2,f0
mov GR_ExpMask = 0x1ffff
}
Expand Down

0 comments on commit 6f65e66

Please sign in to comment.