summaryrefslogtreecommitdiff
path: root/rts
diff options
context:
space:
mode:
authorGabor Greif <ggreif@gmail.com>2017-05-04 18:33:57 +0200
committerGabor Greif <ggreif@gmail.com>2017-05-05 12:26:26 +0200
commit02748a52659949a06ef61d02894dadddd3c97412 (patch)
tree5c4bb3b49658a47e094bde1f05a62661b4b7069d /rts
parentc8e4d4b387d6d057dea98d6a595e3712f24289dc (diff)
downloadhaskell-02748a52659949a06ef61d02894dadddd3c97412.tar.gz
Typos in comments [ci skip]
Diffstat (limited to 'rts')
-rw-r--r--rts/RetainerSet.h2
-rw-r--r--rts/posix/itimer/Pthread.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/rts/RetainerSet.h b/rts/RetainerSet.h
index 60b7c2e1d2..52f12dc155 100644
--- a/rts/RetainerSet.h
+++ b/rts/RetainerSet.h
@@ -106,7 +106,7 @@ RetainerSet *singleton(retainer r);
extern RetainerSet rs_MANY;
-// Checks if a given retainer is a memeber of the retainer set.
+// Checks if a given retainer is a member of the retainer set.
//
// Note & (maybe) Todo:
// This function needs to be declared as an inline function, so it is declared
diff --git a/rts/posix/itimer/Pthread.c b/rts/posix/itimer/Pthread.c
index a4f55527dd..e15ac2521e 100644
--- a/rts/posix/itimer/Pthread.c
+++ b/rts/posix/itimer/Pthread.c
@@ -22,7 +22,7 @@
*
* In the threaded RTS, we can't tick in CPU time because the thread
* which has the virtual timer might be idle, so the tick would never
- * fire. Therfore we used to tick in realtime in the threaded RTS and
+ * fire. Therefore we used to tick in realtime in the threaded RTS and
* in CPU time otherwise, but now we always tick in realtime, for
* several reasons:
*