Skip to content

Commit cd70645

Browse files
committed
Markdown linter fixes for the suggestion
Signed-off-by: edanhub <[email protected]>
1 parent a307c58 commit cd70645

File tree

1 file changed

+2
-3
lines changed
  • docs/Secure-Coding-Guide-for-Python/CWE-697/CWE-595

1 file changed

+2
-3
lines changed

docs/Secure-Coding-Guide-for-Python/CWE-697/CWE-595/README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,14 +57,13 @@ The first set of print statements illustrates string interning. While `a` and `b
5757

5858
## Non-Compliant Code Example
5959

60-
The `noncompliant01.py` code demonstrates potentially unexpected outcomes when using different comparisons.
60+
The `noncompliant01.py` code demonstrates potentially unexpected outcomes when using different comparisons.
6161

6262
* The `==` operator using `__eq__`, checks value equality for most build-in types, checks for reference equality if the `__eq__` is missing in a custom class. So 12 == 12 is True and Integer(12) == Integer(12) is False.
63-
* The `==` comparing lists of objects, that also applies to other types of collections.
63+
* The `==` comparing lists of objects, that also applies to other types of collections.
6464
* The `in` operator also depends on the behavior of the `__eq__` method
6565
* The `is` operator that checks the references point to the same object regardless of the stored value.
6666

67-
6867
_[noncompliant01.py:](noncompliant01.py)_
6968

7069
```py

0 commit comments

Comments
 (0)