Skip to content

Commit

Permalink
Merge pull request nus-cs2103-AY2223S2#79 from shittake/master
Browse files Browse the repository at this point in the history
Fix checkstyle issues
  • Loading branch information
shittake authored Mar 15, 2023
2 parents 088e6a8 + b2aedce commit fedbf80
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion docs/AboutUs.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ You can reach us at the email `seer[at]comp.nus.edu.sg`

<img src="images/shittake.png" width="200px">

[[github](http://github.com/shittake)]
[[github](http://github.com/shittake)]
[[portfolio](team/shittake.md)]

* Role: Developer
Expand Down
20 changes: 10 additions & 10 deletions docs/UserGuide.md
Original file line number Diff line number Diff line change
Expand Up @@ -599,7 +599,7 @@ Examples:
<td>
<ul>

<li><code>touch recur fornightLabs Labs Friday 10:00 2 0.5</code>
<li><code>touch recur fortnightLabs Labs Friday 10:00 2 0.5</code>

<li><code>touch recur biWeeklyConsults Consultations Thursday 16:00 1 2</code>

Expand Down Expand Up @@ -662,7 +662,7 @@ Examples:
<tr>
<td><strong>List non-recurring event</strong>
</td>
<td><code>ls event [task]</code>
<td><code>ls event [task]</code>
</td>
<td>
<ul>
Expand Down Expand Up @@ -707,7 +707,7 @@ Examples:

<li><code>:5,10d</code>

<li><code>:%d</code>
<li><code>:%d</code>

<li><code>:.,10d</code>

Expand All @@ -728,7 +728,7 @@ Examples:

<li><code>:delete event 5,10d</code>

<li><code>:delete event %d</code>
<li><code>:delete event %d</code>

<li><code>:delete event .,10d</code>

Expand All @@ -752,24 +752,24 @@ Examples:
<td>
<ul>

<li><code>example 1</code>
<li><code>example 1</code>
<ul>

<li><code>:cd weeklyTutorials students</code>

<li><code>:delete student 5</code>
</li>
</li>
</ul>

<li><code>example 2</code>
<li><code>example 2</code>
<ul>

<li><code>:cd weeklyLabs students</code>

<li><code>:delete student 1</code>
</li>
</li>
</ul>
</li>
</li>
</ul>
</td>
</tr>
Expand Down Expand Up @@ -1008,7 +1008,7 @@ Examples:
<td>
<ul>

<li><code>sort student lab alphabetical reverse</code>
<li><code>sort student lab alphabetical reverse</code>

<li><code>sort student tutorial participation nonreverse</code>

Expand Down
2 changes: 1 addition & 1 deletion docs/team/jthh.md
Original file line number Diff line number Diff line change
Expand Up @@ -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]()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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<Tag> tagList = ParserUtil.parseTags(argMultimap.getAllValues(PREFIX_TAG));
Expand Down

0 comments on commit fedbf80

Please sign in to comment.