diff options
author | Facundo DomÃnguez <facundo.dominguez@tweag.io> | 2014-12-22 19:15:36 -0200 |
---|---|---|
committer | Facundo DomÃnguez <facundo.dominguez@tweag.io> | 2014-12-22 19:16:54 -0200 |
commit | c72f61c6d4dd779d61bd0ebc0b1211a84c5b9038 (patch) | |
tree | cab68e458106294731ccd5d3f2ad1f328000204a /rts | |
parent | 22bb78bb02718e162130690dfb9a11d7b719cea1 (diff) | |
download | haskell-c72f61c6d4dd779d61bd0ebc0b1211a84c5b9038.tar.gz |
Groom comments related to StaticPointers.
Reviewed By: austin
Differential Revision: https://phabricator.haskell.org/D575
Diffstat (limited to 'rts')
-rw-r--r-- | rts/Hash.c | 2 | ||||
-rw-r--r-- | rts/Hash.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/rts/Hash.c b/rts/Hash.c index 1881092851..422c3d9182 100644 --- a/rts/Hash.c +++ b/rts/Hash.c @@ -206,7 +206,7 @@ lookupHashTable(HashTable *table, StgWord key) return NULL; } -// Puts up to keys_sz keys of the hash table into the given array. Returns the +// Puts up to szKeys keys of the hash table into the given array. Returns the // actual amount of keys that have been retrieved. // // If the table is modified concurrently, the function behavior is undefined. diff --git a/rts/Hash.h b/rts/Hash.h index e802644659..136f94a18c 100644 --- a/rts/Hash.h +++ b/rts/Hash.h @@ -21,7 +21,7 @@ void * removeHashTable ( HashTable *table, StgWord key, void *data ); int keyCountHashTable (HashTable *table); -// Puts up to keys_sz keys of the hash table into the given array. Returns the +// Puts up to szKeys keys of the hash table into the given array. Returns the // actual amount of keys that have been retrieved. // // If the table is modified concurrently, the function behavior is undefined. |