Skip to content

operator== becomes == #1287

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ <h5><a href="fake/ExtraSpecialList-class.html">ExtraSpecialList</a></h5>
<code>element</code>, unless it has a more efficient way to find an element
equal to <code>element</code>.</p>
<p>The equality used to determine whether <code>element</code> is equal to an element of
the iterable defaults to the <code>Object.operator==</code> of the element.</p>
the iterable defaults to the <code>Object.==</code> of the element.</p>
<p>Some types of iterable may have a different equality used for its elements.
For example, a <code>Set</code> may have a custom equality
(see <code>Set.identical</code>) that its <code>contains</code> uses.
Expand Down
2 changes: 1 addition & 1 deletion testing/test_package_docs/fake/SpecialList/contains.html
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ <h5><a href="fake/SpecialList-class.html">SpecialList</a></h5>
<code>element</code>, unless it has a more efficient way to find an element
equal to <code>element</code>.</p>
<p>The equality used to determine whether <code>element</code> is equal to an element of
the iterable defaults to the <code>Object.operator==</code> of the element.</p>
the iterable defaults to the <code>Object.==</code> of the element.</p>
<p>Some types of iterable may have a different equality used for its elements.
For example, a <code>Set</code> may have a custom equality
(see <code>Set.identical</code>) that its <code>contains</code> uses.
Expand Down