diff --git a/fhem/FHEM/98_cmdalias.pm b/fhem/FHEM/98_cmdalias.pm
index 362391a93..5463eeeda 100644
--- a/fhem/FHEM/98_cmdalias.pm
+++ b/fhem/FHEM/98_cmdalias.pm
@@ -103,43 +103,45 @@ CommandCmdAlias($$$)
=pod
=item command
-=item summary create new commands or replace internal ones.
+=item summary create new FHEM commands or replace internal ones
=item summary_DE neue FHEM Befehle definieren oder existierende ändern
=begin html
cmdalias
- create new commands or replace internal ones.
-
+ create new FHEM commands or replace internal ones.
+
Define
- define <name> cmdalias <cmd> [parameter]
- AS newcommand..."
+ define <name> cmdalias <cmd_to_be_replaced or new_cmd>
+ [parameter] AS <existing_cmd>
-
- parameter is optional and is a regexp which must match the command
- entered.
- If it matches, then the specified newcommand will be executed, which is
- a fhem command (see Fhem command types for
- details). Like in the notify commands, $EVENT or
- $EVTPART may be used, in this case representing the command arguments as
- whole or the unique words entered.
- Notes:
- - newcommand may contain cmd, but recursion is not allowed.
- - if there are multiple definitions, they are checked/executed in
- alphabetically sorted name oder.
-
- Examples:
-
- define s1 cmdalias shutdown update AS save;;shutdown
- define s2 cmdalias set lamp .* AS { Log 1, "$EVENT";; fhem("set $EVENT") }
-
-
+
+ parameter is optional and is a regexp which must match the command
+ entered.
+ If it matches, then the specified <existing_command> will be
+ executed, which is a FHEM command (see FHEM command
+ types for details). Like in notify, $EVENT or
+ $EVTPART may be used, in this case representing the
+ command arguments as whole or the unique words entered.
+
+ Notes:
+ - recursion is not allowed.
+ - if there are multiple definitions, they are checked/executed in
+ alphabetically sorted <name> oder.
+
+ Examples:
+
+ define s1 cmdalias shutdown update AS save;;shutdown
+ define s2 cmdalias set lamp .* AS { Log 1, "$EVENT";; fhem("set $EVENT") }
+
+
=end html
=cut
+