mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-23 20:15:05 +02:00
Grammar fix, mention int value types
This commit is contained in:
parent
b32e4160be
commit
6d81868b13
1 changed files with 2 additions and 2 deletions
|
@ -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.
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue