diff --git a/docs/AboutUs.md b/docs/AboutUs.md
index 844779e79ab..48abdb2198d 100644
--- a/docs/AboutUs.md
+++ b/docs/AboutUs.md
@@ -41,7 +41,7 @@ You can reach us at the email `seer[at]comp.nus.edu.sg`
-[[github](http://github.com/shittake)]
+[[github](http://github.com/shittake)]
[[portfolio](team/shittake.md)]
* Role: Developer
diff --git a/docs/UserGuide.md b/docs/UserGuide.md
index fd48c4cee83..e2deee393e0 100644
--- a/docs/UserGuide.md
+++ b/docs/UserGuide.md
@@ -599,7 +599,7 @@ Examples:
touch recur fornightLabs Labs Friday 10:00 2 0.5
+touch recur fortnightLabs Labs Friday 10:00 2 0.5
touch recur biWeeklyConsults Consultations Thursday 16:00 1 2
@@ -662,7 +662,7 @@ Examples:
ls event [task]
+ ls event [task]
:5,10d
-:%d
+:%d
:.,10d
@@ -728,7 +728,7 @@ Examples:
:delete event 5,10d
-:delete event %d
+:delete event %d
:delete event .,10d
@@ -752,24 +752,24 @@ Examples:
example 1
+example 1
:cd weeklyTutorials students
:delete student 5
-example 2
+example 2
:cd weeklyLabs students
:delete student 1
-sort student lab alphabetical reverse
+sort student lab alphabetical reverse
sort student tutorial participation nonreverse
diff --git a/docs/team/jthh.md b/docs/team/jthh.md
index ddad95daf46..53881129ceb 100644
--- a/docs/team/jthh.md
+++ b/docs/team/jthh.md
@@ -24,7 +24,7 @@ Given below are my contributions to the project.
* **Enhancements to existing features**:
* Not available yet
-
+
* **Documentation**:
* User Guide:
* Added documentation for the features `delete` and `find` [\#72]()
diff --git a/src/main/java/seedu/address/logic/parser/AddCommandParser.java b/src/main/java/seedu/address/logic/parser/AddCommandParser.java
index 749753dbc2e..8b51e655c78 100644
--- a/src/main/java/seedu/address/logic/parser/AddCommandParser.java
+++ b/src/main/java/seedu/address/logic/parser/AddCommandParser.java
@@ -49,8 +49,8 @@ public AddCommand parse(String args) throws ParseException {
Email email = ParserUtil.parseEmail(argMultimap.getValue(PREFIX_EMAIL).get());
Photo photo = ParserUtil.parsePhoto(argMultimap.getValue(PREFIX_PHOTO).get());
Address address = ParserUtil.parseAddress(argMultimap.getValue(PREFIX_ADDRESS).get());
-
- Remark remark = new Remark(); // add command does not allow adding remarks straight away
+ // add command does not allow adding remarks straight away
+ Remark remark = new Remark();
Performance performance = ParserUtil.parsePerformance(argMultimap.getValue(PREFIX_PERFORMANCE).get());
Set