Skip to content

Commit c83dc5e

Browse files
committed
fixed md lint errors
Signed-off-by: Helge Wehder <[email protected]>
1 parent 6adc36d commit c83dc5e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

docs/Secure-Coding-Guide-for-Python/CWE-664/CWE-409/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ with zipfile.ZipFile("zip_attack_test.zip", mode="r") as archive:
146146

147147
```
148148

149-
Depending on the underlaying zip library we should see `noncompliant02.py` prevent a zip bomb but not a traversal attack.
149+
Depending on the underlaying zip library we should see `noncompliant02.py` prevent a zip bomb but not a traversal attack.
150150

151151
__Example `noncompliant02.py` output:__
152152

docs/Secure-Coding-Guide-for-Python/templates/README_TEMPLATE.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ _[example01.py:](example01.py)_
1818
# Code goes here
1919
```
2020

21-
**Output of example01.py:**
21+
__Output of example01.py:__
2222

2323
```bash
2424
Console output...
@@ -28,7 +28,7 @@ Console output...
2828

2929
Introduction to the code example...
3030

31-
**[noncompliant01.py](noncompliant01.py):**
31+
_[noncompliant01.py](noncompliant01.py):_
3232

3333
```python
3434
"""Non-compliant Code Example"""
@@ -48,7 +48,7 @@ Short explanation of expected outcome of running the code example, e.g. "The cod
4848

4949
Introduction to the code example...
5050

51-
*[compliant01.py](compliant01.py):*
51+
_[compliant01.py](compliant01.py):_
5252

5353
```python
5454
"""Compliant Code Example"""

0 commit comments

Comments
 (0)