]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.scl.runtime/scl/Prelude.scl
Merge branch 'feature/funcwrite'
[simantics/platform.git] / bundles / org.simantics.scl.runtime / scl / Prelude.scl
index 2c5966dc40f99a2b38a594b675dd8dc9588bf1bb..c81f8308954e8ee241653b686b8d0bcbeffdaa6c 100644 (file)
@@ -1396,7 +1396,7 @@ instance Show String where
 instance Read String where
     read str = str
     
-@deprecated
+@deprecated "Instead of 'splitString text pattern', write 'split pattern text' (note change in the parameter order)." 
 "`splitString text pattern` splits the string into a list of string where the parts are sepratated in the original list by the given pattern."
 splitString :: String -> String -> [String]
 splitString source pattern = arrayToList $ splitString_ source pattern