Unverified Commit 1ece0851 authored by Beka Westberg's avatar Beka Westberg Committed by GitHub

Fix compare texts block docs (#2204)

parent ae148869
......@@ -175,11 +175,11 @@
<p>Returns whether or not the string contains any characters (including spaces). When the string length is 0, returns true otherwise it returns false.</p>
<h3 id="compare">compare texts &lt; &gt; =</h3>
<h3 id="compare">compare texts &lt; &gt; =</h3>
<p><img src="images/text/compare.gif" alt="" /></p>
<p>Returns whether or not the first string is lexicographically &lt;, &gt;, or = the second string depending on which dropdown is selected.</p>
<p>Returns whether or not the first string is lexicographically &lt;, &gt;, =, or ≠ the second string depending on which dropdown is selected.</p>
<p>A string a considered lexicographically greater than another if it is alphabetically greater than the other string. Essentially, it would come after it in the dictionary. All uppercase letters are considered smaller or to occur before lowercase letters. cat would be &gt; Cat.</p>
......
......@@ -51,11 +51,11 @@ Returns the number of characters including spaces in the string. This is the len
Returns whether or not the string contains any characters (including spaces). When the string length is 0, returns true otherwise it returns false.
### compare texts < > = {#compare}
### compare texts < > = {#compare}
![](images/text/compare.gif)
Returns whether or not the first string is lexicographically <, >, or = the second string depending on which dropdown is selected.
Returns whether or not the first string is lexicographically <, >, =, or ≠ the second string depending on which dropdown is selected.
A string a considered lexicographically greater than another if it is alphabetically greater than the other string. Essentially, it would come after it in the dictionary. All uppercase letters are considered smaller or to occur before lowercase letters. cat would be > Cat.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment