diff options
author | Daniel Gröber <dxld@darkboxed.org> | 2019-06-14 14:31:15 +0200 |
---|---|---|
committer | Daniel Gröber <dxld@darkboxed.org> | 2019-09-22 15:18:10 +0200 |
commit | f083358b177fad4d5f0325d3cc099eeed64e7f54 (patch) | |
tree | d61ae117d3a90b9b2a1bafa41ae50c19680f3fea /rts/RetainerProfile.c | |
parent | f79ac2efb548c3e67610299592731704a08b8796 (diff) | |
download | haskell-f083358b177fad4d5f0325d3cc099eeed64e7f54.tar.gz |
rts: retainer: Fix comment typo s/keeps/keep/
Diffstat (limited to 'rts/RetainerProfile.c')
-rw-r--r-- | rts/RetainerProfile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rts/RetainerProfile.c b/rts/RetainerProfile.c index feb785adf2..ee325ea109 100644 --- a/rts/RetainerProfile.c +++ b/rts/RetainerProfile.c @@ -38,7 +38,7 @@ ~~~~~~~~~~~~~~~~~~~~~~~~~~ Retainer profiling is a profiling technique that gives information why objects can't be freed and lists the consumers that hold pointers to -the heap objects. It does not list all the objects that keeps references +the heap objects. It does not list all the objects that keep references to the other, because then we would keep too much information that will make the report unusable, for example the cons element of the list would keep all the tail cells. As a result we are keeping only the objects of the |