diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-04-01 05:28:01 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-04-01 05:28:01 +0000 |
commit | 5e947a9504d2a842fbb8e30f06dabd4865c6248e (patch) | |
tree | 639823f0b45b5a525e2e96e30ce0899ecb12b108 /gcc/ada/cal.c | |
parent | 4f0d472023c38917229ba7664c6b4c56416b131b (diff) | |
download | gcc-5e947a9504d2a842fbb8e30f06dabd4865c6248e.tar.gz |
* adaint.c, cal.c, decl.c, gigi.h, gmem.c, init.c, link.c,
raise.c, tracebak.c, trans.c, utils2.c, utils.c: Fix comment
typos.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@97369 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ada/cal.c')
-rw-r--r-- | gcc/ada/cal.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/ada/cal.c b/gcc/ada/cal.c index 8f8930e24eb..20a631634bb 100644 --- a/gcc/ada/cal.c +++ b/gcc/ada/cal.c @@ -31,7 +31,7 @@ ****************************************************************************/ /* This file contains those routines named by Import pragmas in package */ -/* GNAT.Calendar. It is used to to Duration to timeval convertion. */ +/* GNAT.Calendar. It is used to do Duration to timeval conversion. */ /* These are simple wrappers function to abstarct the fact that the C */ /* struct timeval fields type are not normalized (they are generaly */ /* defined as int or long values). */ @@ -75,7 +75,7 @@ __gnat_timeval_to_duration (struct timeval *t, long *sec, long *usec) void __gnat_duration_to_timeval (long sec, long usec, struct timeval *t) { - /* here we are doing implicit convertion from a long to the struct timeval + /* here we are doing implicit conversion from a long to the struct timeval fields types. */ t->tv_sec = sec; |