Fix typos in error handling documentation

Corrected spelling errors in the 'Error Handling' section, including 'Hanlding' to 'Handling', 'errrors' to 'errors', and improved capitalization and grammar for clarity.
This commit is contained in:
Nicholas Tindle
2025-11-03 13:03:45 -06:00
parent d86736b26b
commit c61b2a122d

View File

@@ -614,9 +614,9 @@ custom_requests = Requests(
)
```
### Error Hanlding
### Error Handling
All blocks should have an error output that catches all reasonable errrors that a user can handle, wrap them in a value error, and re-raise. Dont catch things the system admin would need to fix like being out of money or unreachable addresses.
All blocks should have an error output that catches all reasonable errors that a user can handle, wrap them in a ValueError, and re-raise. Don't catch things the system admin would need to fix like being out of money or unreachable addresses.
### Data Models