diff --git a/docs/User-Manual.md b/docs/User-Manual.md
index bb9c5f7c..c405db3b 100644
--- a/docs/User-Manual.md
+++ b/docs/User-Manual.md
@@ -122,7 +122,7 @@ Cyclone implements the Scheme language as documented by the [R7RS Sch
A [R7RS 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.