Skip to content

Commit 54ef97a

Browse files
authored
Update REAME.md
Removed some trailing whitespace Signed-off-by: BartyBoi1128 <[email protected]>
1 parent 0a589a1 commit 54ef97a

File tree

1 file changed

+2
-2
lines changed
  • docs/Secure-Coding-Guide-for-Python/CWE-703/CWE-390

1 file changed

+2
-2
lines changed

docs/Secure-Coding-Guide-for-Python/CWE-703/CWE-390/REAME.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ The following two exceptions, highlighted in [SEI Cert's Oracle Coding Standard
9393
We wrote a code example in Python in order to assist in the understanding of these exceptions.
9494

9595
__ERR00-J-EX0:__ You may suppress exceptions during the release of non-reusable resources, such as closing files, network sockets, or shutting down threads, if they don't affect future program behavior.
96-
__ERR00-J-EX1:__ Allow higher-level code to catch and attempt recovery from exceptions. If recovery is not possible, log the exception, add information if needed, and rethrow it.
96+
__ERR00-J-EX1:__ Allow higher-level code to catch and attempt recovery from exceptions. If recovery is not possible, log the exception, add information if needed, and rethrow it.
9797

9898
*[example01.py](example01.py):*
9999

@@ -120,7 +120,7 @@ def exception_example():
120120
exception_example()
121121
```
122122

123-
If recovery remains impossible, wrap the checked exception in an unchecked exception and rethrow it.
123+
If recovery remains impossible, wrap the checked exception in an unchecked exception and rethrow it.
124124

125125
## Automated Detection
126126

0 commit comments

Comments
 (0)