diff --git a/matlab/utilities/dseries/from.m b/matlab/utilities/dseries/from.m
index 8a272873a70560cd3975d307c894cbe777ef6c6d..b905642d9180b4bcc234699f8c88b082d0810995 100644
--- a/matlab/utilities/dseries/from.m
+++ b/matlab/utilities/dseries/from.m
@@ -250,7 +250,7 @@ else
             EXPRESSION = regexprep(EXPRESSION,sprintf('%s\\(t+%s\\)',leadlagtable{i,1},num2str(lead)),sprintf('data(%s:%s,%s)',num2str(t1-lead),num2str(t2-lead),num2str(i)));
         end
     end
-    % Transform some operators (^ -> .^, / -> ./, * -> .*)
+    % Transform some operators (^ -> .^, / -> ./ and * -> .*)
     EXPRESSION = strrep(EXPRESSION,'^','.^');
     EXPRESSION = strrep(EXPRESSION,'*','.*');
     EXPRESSION = strrep(EXPRESSION,'/','./');