-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Edit features related to Student class and general information in the UG #14
Edit features related to Student class and general information in the UG #14
Conversation
Codecov Report
@@ Coverage Diff @@
## master #14 +/- ##
=========================================
Coverage 75.26% 75.26%
Complexity 419 419
=========================================
Files 71 71
Lines 1338 1338
Branches 126 126
=========================================
Hits 1007 1007
Misses 301 301
Partials 30 30 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
| Action | Format, Examples | | ||
|--------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------| | ||
| **Add a student** | `addStu s/STUDENT_NO [n/NAME] [e/EMAIL] [t/TUTORIAL_GRP]…` <br> e.g., `addStu s/A1234567Y n/Andy t/03` | | ||
| **Add a graded component** | `addComp c/COMP_NAME w/WEIGHTAGE m/MAX_MARKS…` <br> e.g., `addComp c/Midterm w/30 m/70` | | ||
| **Add a student mark** | `addStuMark s/STUDENT_NO c/COMP_NAME m/MARKS [x/comments]…` <br> e.g., `addStuMark s/A1234567Y c/Midterm m/57 ` | | ||
| **Edit a student** | `editStu s/STUDENT_NO [t/TUTORIAL_GRP][n/NAME][e/EMAIL]…` <br> e.g., `editStu n/Megan Chan t/03` | | ||
| **Edit a graded component** | `editComp c/COMP_NAME [w/WEIGHTAGE] [m/MAX_MARKS]` <br> e.g., `editComp c/Midterm w/25 ` | | ||
| **Edit a student mark** | `editStuMark s/STUDENT_NO c/COMP_NAME [m/MARKS] [x/comments]` <br> e.g., `editComp s/A1234567Y c/Midterm x/Q4 answer is debatable. Discuss in next staff meeting.` | | ||
| **Delete a student** | `deleteStu s/STUDENT_NO` <br> e.g., `deleteStu s/A1234567Y` | | ||
| **Delete a graded component** | `deleteComp s/Optional Project` <br> e.g., `deleteComp s/Optional Project` | | ||
| **Clear** | `clear` | | ||
| **Find** | `find KEYWORD [MORE_KEYWORDS]`<br> e.g., `find James Jake` | | ||
| **List all students** | ` listStudents [t/TUTORIAL_GRP …]` <br> e.g., `listStudents t/02 03` | | ||
| **List all graded components** | ` listComps [c/COMP_NAME …]` <br> e.g., `listComps c/CA1 CA2` | | ||
| **Help** | `help` | |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I like how you updated the command summary
No description provided.