summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2014-02-10 14:17:35 -0500
committerLuke Shumaker <LukeShu@sbcglobal.net>2014-02-10 14:17:35 -0500
commit107d7cff315548692a4e81e2961664fd5f08238a (patch)
tree08aeeeb7eaffb6f121f820122bdc8285979fb350
parentf3544deefc69b00e99c45f066fe7a3221f200a8c (diff)
DesignDocument: fix whitespace
-rw-r--r--docs/DesignDocument.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/DesignDocument.md b/docs/DesignDocument.md
index d294c30..e73cb25 100644
--- a/docs/DesignDocument.md
+++ b/docs/DesignDocument.md
@@ -188,14 +188,14 @@ MainController
- `show_homepage()` Responds to GET requests by rendering the
`main/homepage` view.
- - `edit_settings()` Responds to GET requests by (if the user is
+ - `edit_settings()` Responds to GET requests by (if the user is
authenticated and is a host) rendereing the `main/edit` view
that presents the user with a form to edit the server settings.
If the user is not authenticated, it renders the
`common/permission_denied` view. This involves interacting with
the `User` model to determine whether the user is authorized to
see this.
- - `update_settings()` Responds to POST requests by updating the
+ - `update_settings()` Responds to POST requests by updating the
server configuration with the POSTed settings. It then either
renders the `common/permission_denied` view, or the `main/edit`
view with the updated settings. This involves interacting with
@@ -223,7 +223,7 @@ Server
User
: A class that represents someone using the Views (HTML, javascript)
the user is in competitions and
-
+
## UML Diagram of Classes