-
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
Cattag displaying bug #253
Cattag displaying bug #253
Conversation
When we cattag 2 tags, it reponses "Category of tag [[tag1], [tag2]] ..." Instead, we just want "Category of tag [tag1], [tag2]..."
Codecov ReportAll modified and coverable lines are covered by tests ✅
|
The displaying error is fixed by #249, so all I do is add details to the UG |
@@ -21,7 +21,7 @@ public class CategorizeTagCommand extends Command { | |||
|
|||
public static final String MESSAGE_USAGE = COMMAND_WORD | |||
+ ": Categorizes a tag. Changes all occurrences of the specified tag to the desired category.\n" | |||
+ "Parameters: " + PREFIX_TAG + "TAG (existing tag label) CATEGORY\n" | |||
+ "Parameters: " + PREFIX_TAG + "TAG (at least one existing tag label) CATEGORY\n" |
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 think this would imply “t/tag1 tag2 tag3…” when in reality the correct format is “t/tag1 t/tag2 ….”
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 think this would imply “t/tag1 tag2 tag3…” when in reality the correct format is “t/tag1 t/tag2 ….”
That make sense
* `cattag t/floorball t/mahjong activity` categorizes both tags `floorball` and `mahjong` under `Activities` | ||
* `cattag t/CS2100 acads` categorizes the tag `CS2100` under `Academics` and color of `t/CS2100` become `Gold`. | ||
* `cattag t/floorball t/mahjong activity` categorizes both tags `floorball` and `mahjong` under `Activities` with color `Blue`. | ||
* Not-yet categorized tags have color `Grey` by default. |
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.
good addition of details
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
0fd80f7
into
AY2425S1-CS2103T-F14a-4:master
No description provided.