diff --git a/docs/Scheme-Language-Compliance.md b/docs/Scheme-Language-Compliance.md
index 6c21316a..4933bfd4 100644
--- a/docs/Scheme-Language-Compliance.md
+++ b/docs/Scheme-Language-Compliance.md
@@ -20,11 +20,11 @@ Section | Status | Comments
4.1 Primitive expression types | Partial | `include` and `include-ci` are not implemented, although `include` may be specified as part of a library definition.
4.2 Derived expression types | Partial |
4.2.1 Conditionals | Yes |
-4.2.2 Binding constructs | Partial | Missing `let-values` and `let*-values`
+4.2.2 Binding constructs | Yes |
4.2.3 Sequencing | Yes |
4.2.4 Iteration | Yes |
4.2.5 Delayed evaluation | Yes |
-4.2.6 Dynamic bindings | Yes |
+4.2.6 Dynamic bindings | Yes | Parameter objects do not have thread-specific data at this time.
4.2.7 Exception handling | Yes |
4.2.8 Quasiquotation | Yes |
4.2.9 Case-lambda | Yes |
diff --git a/index.md b/index.md
index 561c1007..80b42fd0 100644
--- a/index.md
+++ b/index.md
@@ -54,7 +54,7 @@ Documentation
- Cyclone's [Garbage Collector](docs/Garbage-Collector) is documented at a high-level. This document includes details on extending Cheney on the MTA to support multiple stacks and fusing that approach with a tri-color marking collector.
-- The [Benchmarks](docs/Benchmarks) page compares the performance of Cyclone with other R7RS Schemes using a common set of benchmarks.
+- This [Benchmarks](http://ecraven.github.io/r7rs-benchmarks/benchmark.html) page by [ecraven](https://github.com/ecraven) compares the performance of Cyclone with other R7RS and R6RS Schemes using a common set of benchmarks.
- [Writing the Cyclone Scheme Compiler](docs/Writing-the-Cyclone-Scheme-Compiler) provides high-level details on how the compiler was written and how it works.