diff --git a/libraries/Gelato/Html/Html.php b/libraries/Gelato/Html/Html.php
index c158f08..5ceb9a9 100644
--- a/libraries/Gelato/Html/Html.php
+++ b/libraries/Gelato/Html/Html.php
@@ -51,7 +51,7 @@ class Html
*
*
*
- * // Registering a Htmlk macro
+ * // Registering a Html macro
* Html::macro('my_element', function() {
* return '';
* });
@@ -61,7 +61,7 @@ class Html
*
*
* // Registering a Html macro with parameters
- * Html::macro('my_element', function(id = '') {
+ * Html::macro('my_element', function($id = '') {
* return '';
* });
*