Skip to content

Commit

Permalink
Spelling.
Browse files Browse the repository at this point in the history
  • Loading branch information
HansOlsson committed Nov 21, 2022
1 parent f5dae53 commit dd691cf
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions Modelica/Utilities/Strings.mo
Expand Up @@ -114,7 +114,7 @@ Comparison is with regards to lexicographical order,
e.g., \"a\" < \"b\";
</p>
<p>
It is intended for ASCII, the case-insentive comparison is not guaranteed to work for UTF-8.
It is intended for ASCII, the case-insensitive comparison is not guaranteed to work for UTF-8.
</p>
</html>"));
end compare;
Expand All @@ -141,7 +141,7 @@ Compare whether two strings are identical,
optionally ignoring case.
</p>
<p>
It is intended for ASCII, the case-insentive comparison is not guaranteed to work for UTF-8.
It is intended for ASCII, the case-insensitive comparison is not guaranteed to work for UTF-8.
</p>
</html>"));
end isEqual;
Expand Down Expand Up @@ -222,7 +222,7 @@ for the counting it does not matter whether a letter is upper
or lower case.
</p>
<p>
It is intended for ASCII, the case-insentive count is not guaranteed to work for UTF-8.
It is intended for ASCII, the case-insensitive count is not guaranteed to work for UTF-8.
</p>
</html>"));
end count;
Expand Down Expand Up @@ -270,7 +270,7 @@ and upper case are ignored for the search.
If \"searchString\" is not found, a value of \"0\" is returned.
</p>
<p>
It is intended for ASCII, the case-insentive count is not guaranteed to work for UTF-8.
It is intended for ASCII, the case-insensitive count is not guaranteed to work for UTF-8.
</p>
</html>"));
end find;
Expand Down Expand Up @@ -322,7 +322,7 @@ and upper case are ignored for the search.
If \"searchString\" is not found, a value of \"0\" is returned.
</p>
<p>
It is intended for ASCII, the case-insentive count is not guaranteed to work for UTF-8.
It is intended for ASCII, the case-insensitive count is not guaranteed to work for UTF-8.
</p>
</html>"));
end findLast;
Expand Down Expand Up @@ -394,7 +394,7 @@ substring by \"replaceString\".
<strong>false</strong>,
the search ignores whether letters are upper
or lower case.</li>
<li> It is intended for ASCII. The case-insentive search is not guaranteed to work for UTF-8.</li>
<li> It is intended for ASCII. The case-insensitive search is not guaranteed to work for UTF-8.</li>
</ul>
<p>
The function returns the \"string\" with the
Expand Down Expand Up @@ -469,7 +469,7 @@ s1 = {\"force\", \"angle\", \"pressure\"};
s2 = Strings.sort(s1);
-> s2 = {\"angle\", \"force\", \"pressure\"};
</pre></blockquote>
<p>It is intended for ASCII, the case-insentive sort is not guaranteed to work for UTF-8.</p>
<p>It is intended for ASCII, the case-insensitive sort is not guaranteed to work for UTF-8.</p>
</html>"));
end sort;

Expand Down

0 comments on commit dd691cf

Please sign in to comment.