summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorIvan Maidanski <ivmai@mail.ru>2019-04-26 10:23:16 +0300
committerIvan Maidanski <ivmai@mail.ru>2019-04-26 10:23:16 +0300
commit45377e49d48e268754cc99f5334b964404a89d9e (patch)
tree67c88e94dffcd9bb5de0f3c51cd17bc0ecd2fffe /README.md
parent51a44b9cdb0f28e60509a6d930e7787163d110c4 (diff)
downloadbdwgc-45377e49d48e268754cc99f5334b964404a89d9e.tar.gz
Fix the stack bottom variable name in README
* README.md (The C Interface to the Allocator): Fix a typo ("GC_stackbottom").
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index c50ecd53..36172236 100644
--- a/README.md
+++ b/README.md
@@ -263,7 +263,7 @@ Note that usually only `GC_malloc` is necessary. `GC_clear_roots` and
`GC_add_roots` calls may be required if the collector has to trace
from nonstandard places (e.g. from dynamic library data areas on a
machine on which the collector doesn't already understand them.) On
-some machines, it may be desirable to set `GC_stacktop` to a good
+some machines, it may be desirable to set `GC_stackbottom` to a good
approximation of the stack base. (This enhances code portability on
HP PA machines, since there is no good way for the collector to
compute this value.) Client code may include "gc.h", which defines