diff --git a/forms/Form.php b/forms/Form.php
index ba4cc45b9..3ff01891a 100755
--- a/forms/Form.php
+++ b/forms/Form.php
@@ -18,13 +18,27 @@
* If you want to process the submitted data in any way, please use {@link getData()} rather than
* the raw request data.
*
- * Validation
+ *
Validation
* Each form needs some form of {@link Validator} to trigger the {@link FormField->validate()} methods for each field.
* You can't disable validator for security reasons, because crucial behaviour like extension checks for file uploads depend on it.
* The default validator is an instance of {@link RequiredFields}.
* If you want to enforce serverside-validation to be ignored for a specific {@link FormField},
* you need to subclass it.
*
+ * URL Handling
+ * The form class extends {@link RequestHandler}, which means it can
+ * be accessed directly through a URL. This can be handy for refreshing
+ * a form by ajax, or even just displaying a single form field.
+ * You can find out the base URL for your form by looking at the
+ *