forked from AY2425S1-CS2103T-W12-3/tp
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request AY2425S1-CS2103T-W12-3#173 from achl1012/change-in…
…valid-link-in-UG Fix command line tutorial link in UG
- Loading branch information
Showing
1 changed file
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -47,7 +47,7 @@ their contacts into 'work', 'personal' and 'school' contacts to better manage th | |
- Run UniLink by typing `java -jar UniLink.jar` | ||
- The app should open within a few seconds, showing some sample data that you can explore! | ||
|
||
- **Using the Command Line**: New to the command line? Check out this [Beginner's Guide to the Command Line](https://tutorials.commandline.com) | ||
- **Using the Command Line**: New to the command line? Check out this [Command Line for Beginners](https://www.freecodecamp.org/news/command-line-for-beginners/) guide! | ||
|
||
![Ui](images/Ui.png) | ||
|
||
|
@@ -159,7 +159,7 @@ Format: <br> | |
|
||
Examples: | ||
* `find John` returns `john` and `John Doe` | ||
* `find h/ @alexyeoh` will return `Alex Yeoh` | ||
* `find h/@alexyeoh` will return `Alex Yeoh` | ||
* `find alex david` returns `Alex Yeoh`, `David Li` | ||
![result for 'find alex david'](images/findAlexDavid.png) | ||
|
||
|
@@ -261,7 +261,7 @@ Action | Format, Examples | |
**Clear** | `clear` | ||
**Delete** | `delete INDEX`<br> e.g., `delete 3` | ||
**Edit** | `edit INDEX [n/NAME] [ct/CONTACT TYPE] [t/TELEGRAM_HANDLE] [p/PHONE_NUMBER] [e/EMAIL] [m/MODULE] [r/REMARK] [t/TAG]…`<br> e.g.,`edit 2 n/James Lee h/@jamesss e/[email protected]` | ||
**Find** | `find NAME [MORE_NAME_KEYWORDS]`<br> e.g., `find James Jake` <br> `find h/ TELEGRAM_HANDLE` e.g., `find h/ @james_lake` | ||
**Find** | `find NAME [MORE_NAME_KEYWORDS]`<br> e.g., `find James Jake` <br> `find h/TELEGRAM_HANDLE` e.g., `find h/@james_lake` | ||
**Filter** | `filter [CONTACT_TYPE]`<br> e.g., `filter WORK`, `filter PERSONAL` | ||
**List** | `list` | ||
**Switch** | `switch [THEME]`<br> e.g., `switch LIGHT`, `switch DARK` | ||
|