diff --git a/src/mechanize/file.cr b/src/mechanize/file.cr
index 900d239..9ec0b40 100644
--- a/src/mechanize/file.cr
+++ b/src/mechanize/file.cr
@@ -9,7 +9,7 @@ class Mechanize
# returns http status code
getter code : Int32
# returns page uri
- getter uri : URI
+ getter uri : URI
def initialize(uri : URI, response : ::HTTP::Client::Response, body : String, code : Int32)
@uri = uri
diff --git a/src/mechanize/form/check_box.cr b/src/mechanize/form/check_box.cr
index e383441..b239cbf 100644
--- a/src/mechanize/form/check_box.cr
+++ b/src/mechanize/form/check_box.cr
@@ -1,4 +1,6 @@
+# This class represents
class Mechanize::FormContent::CheckBox < Mechanize::FormContent::RadioButton
+ # set checkbox checked
def check
@checked = true
end
diff --git a/src/mechanize/form/field.cr b/src/mechanize/form/field.cr
index 27f800e..f98ffee 100644
--- a/src/mechanize/form/field.cr
+++ b/src/mechanize/form/field.cr
@@ -1,6 +1,5 @@
# This class represents elements in the form.
class Mechanize::FormContent::Field
-
# returns field's 'value' attribute
property value : String?
# returns field's 'name' attribute
diff --git a/src/mechanize/form/multi_select_list.cr b/src/mechanize/form/multi_select_list.cr
index f55f518..a960c72 100644
--- a/src/mechanize/form/multi_select_list.cr
+++ b/src/mechanize/form/multi_select_list.cr
@@ -1,5 +1,6 @@
require "./option"
+# This class represents