From efd889cee2ba81e73415be09bbf3e415582b2803 Mon Sep 17 00:00:00 2001 From: jerray <jawher.jerray@eurecom.fr> Date: Wed, 15 Nov 2023 16:31:45 +0100 Subject: [PATCH] Fix typos in the description of some pattern handling commands --- src/main/java/cli/PatternHandling.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/java/cli/PatternHandling.java b/src/main/java/cli/PatternHandling.java index e9b582645e..406fcd48e5 100644 --- a/src/main/java/cli/PatternHandling.java +++ b/src/main/java/cli/PatternHandling.java @@ -391,16 +391,16 @@ public class PatternHandling extends Command { + "-cpl \tget list of configured ports\n" + "-tctl \tget list of tasks to be mapped \n" + "-tcm TASK1 TASK2\tmap TASK1 in same CPU as TASK2\n" - + "-tcml\tmap get list of tasks that can be used to map in same CPU\n" + + "-tcml\t get list of tasks that can be used to map in same CPU\n" + "-tcn TASK BUS\tmap TASK in new CPU linked to bus BUS\n" + "-tcr TASK\tremove the mapping of TASK\n" + "-tcl \tget list of mapped tasks\n" - + "-mctl \tmap get list of channels to be mapped\n" + + "-mctl \t get list of channels to be mapped\n" + "-mcm TASK1.CHANNEL1 TASK2.CHANNEL2\tmap CHANNEL1 in same memory and buses as CHANNEL2\n" - + "-mcml\tmap get list of channels that can be used to map in same Memory\n" + + "-mcml \t get list of channels that can be used to map in same Memory\n" + "-mcn TASK.CHANNEL BUS\tmap CHANNEL in new memory linked to bus BUS\n" + "-mcr TASK.CHANNEL\tremove the mapping of CHANNEL\n" - + "-mcl \tmap get list of mapped channels\n" + + "-mcl \t get list of mapped channels\n" + "-ua TASK ATTRIBUTE VALUE \tput the value VALUE of attribute ATTRIBUTE of the task TASK\n" + "-m [PATH]\tmake the json configuration file of the pattern, you can optionally specify the path of this new file\n"; } -- GitLab