Skip to content

Commit fedbf80

Browse files
authored
Merge pull request nus-cs2103-AY2223S2#79 from shittake/master
Fix checkstyle issues
2 parents 088e6a8 + b2aedce commit fedbf80

File tree

4 files changed

+14
-14
lines changed

4 files changed

+14
-14
lines changed

docs/AboutUs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ You can reach us at the email `seer[at]comp.nus.edu.sg`
4141

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

44-
[[github](http://github.com/shittake)]
44+
[[github](http://github.com/shittake)]
4545
[[portfolio](team/shittake.md)]
4646

4747
* Role: Developer

docs/UserGuide.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -599,7 +599,7 @@ Examples:
599599
<td>
600600
<ul>
601601

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

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

@@ -662,7 +662,7 @@ Examples:
662662
<tr>
663663
<td><strong>List non-recurring event</strong>
664664
</td>
665-
<td><code>ls event [task]</code>
665+
<td><code>ls event [task]</code>
666666
</td>
667667
<td>
668668
<ul>
@@ -707,7 +707,7 @@ Examples:
707707

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

710-
<li><code>:%d</code>
710+
<li><code>:%d</code>
711711

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

@@ -728,7 +728,7 @@ Examples:
728728

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

731-
<li><code>:delete event %d</code>
731+
<li><code>:delete event %d</code>
732732

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

@@ -752,24 +752,24 @@ Examples:
752752
<td>
753753
<ul>
754754

755-
<li><code>example 1</code>
755+
<li><code>example 1</code>
756756
<ul>
757757

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

760760
<li><code>:delete student 5</code>
761-
</li>
761+
</li>
762762
</ul>
763763

764-
<li><code>example 2</code>
764+
<li><code>example 2</code>
765765
<ul>
766766

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

769769
<li><code>:delete student 1</code>
770-
</li>
770+
</li>
771771
</ul>
772-
</li>
772+
</li>
773773
</ul>
774774
</td>
775775
</tr>
@@ -1008,7 +1008,7 @@ Examples:
10081008
<td>
10091009
<ul>
10101010

1011-
<li><code>sort student lab alphabetical reverse</code>
1011+
<li><code>sort student lab alphabetical reverse</code>
10121012

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

docs/team/jthh.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Given below are my contributions to the project.
2424

2525
* **Enhancements to existing features**:
2626
* Not available yet
27-
27+
2828
* **Documentation**:
2929
* User Guide:
3030
* Added documentation for the features `delete` and `find` [\#72]()

src/main/java/seedu/address/logic/parser/AddCommandParser.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ public AddCommand parse(String args) throws ParseException {
4949
Email email = ParserUtil.parseEmail(argMultimap.getValue(PREFIX_EMAIL).get());
5050
Photo photo = ParserUtil.parsePhoto(argMultimap.getValue(PREFIX_PHOTO).get());
5151
Address address = ParserUtil.parseAddress(argMultimap.getValue(PREFIX_ADDRESS).get());
52-
53-
Remark remark = new Remark(); // add command does not allow adding remarks straight away
52+
// add command does not allow adding remarks straight away
53+
Remark remark = new Remark();
5454
Performance performance = ParserUtil.parsePerformance(argMultimap.getValue(PREFIX_PERFORMANCE).get());
5555

5656
Set<Tag> tagList = ParserUtil.parseTags(argMultimap.getAllValues(PREFIX_TAG));

0 commit comments

Comments
 (0)