Grammar fix, mention int value types

This commit is contained in:
justin 2016-04-17 22:10:42 -04:00
parent b32e4160be
commit 6d81868b13

View file

@ -122,7 +122,7 @@ Cyclone implements the Scheme language as documented by the [R<sup>7</sup>RS Sch
A [R<sup>7</sup>RS Compliance Chart](Scheme-Language-Compliance.md) lists differences between the specification and Cyclone's implementation.
[API Documentation](API.md) is available for the libraries provide by Cyclone.
[API Documentation](API.md) is available for the libraries provided by Cyclone.
# Multithreaded Programming
@ -140,7 +140,7 @@ Due to how Cyclone's garbage collector is implemented, objects are relocated in
Finally, note there are some objects that are not relocated so the above does not apply:
- Characters are stored using value types and do not need to be garbage collected.
- Characters and integers are stored using value types and do not need to be garbage collected.
- Symbols are stored in a global table rather than the stack/heap.
- Mutexes are always allocated on the heap since by definition they are used by more than one thread.