diff --git a/includes/rts/Linker.h b/includes/rts/Linker.h index e7e2ea5ce5fbe0fa80d4539ab1542d25e76a8469..42d316fc384d0e37b4072b5015ae61be34b0d32a 100644 --- a/includes/rts/Linker.h +++ b/includes/rts/Linker.h @@ -37,7 +37,7 @@ void initLinker (void); * zero => Do not retain CAFs. Everything reachable from foreign * exports will be retained, due to the StablePtrs * created by the module initialisation code. unloadObj - * free these StablePtrs, which will allow the CAFs to + * frees these StablePtrs, which will allow the CAFs to * be GC'd and the code to be removed. */ void initLinker_ (int retain_cafs); diff --git a/rts/Linker.c b/rts/Linker.c index 1a663cb0bee2a7b7ec008f932c823c1ac7d761a2..77943a54022a9dbe718a7ae7e18d1d9c341b9e94 100644 --- a/rts/Linker.c +++ b/rts/Linker.c @@ -1562,7 +1562,7 @@ void initLinker (void) { // default to retaining CAFs for backwards compatibility. Most // users will want initLinker_(0): otherwise unloadObj() will not - // be able to object files when they contain CAFs. + // be able to unload object files when they contain CAFs. initLinker_(1); }