diff --git a/README.md b/README.md index 35b6f35..b4259e5 100644 --- a/README.md +++ b/README.md @@ -2103,7 +2103,7 @@ from collections import deque Operator -------- -**Module of functions that provide the functionality of operators. Functions are ordered and grouped by operator precedence, from least to most binding. Logical and arithmetic operators in lines 1, 3 and 5 are also ordered by precedence within their own group.** +**Module of functions that provide the functionality of operators. Functions are grouped by operator precedence, from least to most binding. Functions and operators in lines 1, 3 and 5 are also ordered by precedence within a group.** ```python import operator as op ``` diff --git a/index.html b/index.html index 2f4deb3..06f1fca 100644 --- a/index.html +++ b/index.html @@ -1735,7 +1735,7 @@ CompletedProcess(args=[<span class="hljs-string">'bc'</span>, <span class="hljs- <deque>.rotate(n=<span class="hljs-number">1</span>) <span class="hljs-comment"># Last element becomes first.</span> <el> = <deque>.popleft() <span class="hljs-comment"># Raises IndexError if deque is empty.</span> </code></pre> -<div><h2 id="operator"><a href="#operator" name="operator">#</a>Operator</h2><p><strong>Module of functions that provide the functionality of operators. Functions are ordered and grouped by operator precedence, from least to most binding. Logical and arithmetic operators in lines 1, 3 and 5 are also ordered by precedence within their own group.</strong></p><pre><code class="python language-python hljs"><span class="hljs-keyword">import</span> operator <span class="hljs-keyword">as</span> op +<div><h2 id="operator"><a href="#operator" name="operator">#</a>Operator</h2><p><strong>Module of functions that provide the functionality of operators. Functions are grouped by operator precedence, from least to most binding. Functions and operators in lines 1, 3 and 5 are also ordered by precedence within a group.</strong></p><pre><code class="python language-python hljs"><span class="hljs-keyword">import</span> operator <span class="hljs-keyword">as</span> op </code></pre></div>