diff --git a/docs/1.getting-started/3.config.md b/docs/1.getting-started/3.config.md index d600d005b..f2fcb596d 100644 --- a/docs/1.getting-started/3.config.md +++ b/docs/1.getting-started/3.config.md @@ -25,7 +25,7 @@ Config consists of multiple top-level mappings. In the table below they are grou | **Integrations** | [hasura](../9.config/6.hasura.md) | Hasura GraphQL Engine configuration | | | [sentry](../9.config/13.sentry.md) | Sentry configuration | | | [prometheus](../9.config/12.prometheus.md) | Prometheus configuration | -| **Miscellanous** | [advanced](../9.config/1.advanced.md) | Tunables that affect framework behavior | +| **Miscellaneous**| [advanced](../9.config/1.advanced.md) | Tunables that affect framework behavior | | | [custom](../9.config/3.custom.md) | Mapping of user-defined values; neither typed nor validated | | | [logging](../9.config/10.logging.md) | Configure logging verbosity | diff --git a/docs/6.deployment/4.prometheus.md b/docs/6.deployment/4.prometheus.md index 7f3b69ef8..b40a90bcd 100644 --- a/docs/6.deployment/4.prometheus.md +++ b/docs/6.deployment/4.prometheus.md @@ -21,9 +21,9 @@ The following metrics are exposed under `dipdup` namespace: |-|-| | `dipdup_indexes_total` | Number of indexes in operation by status | | `dipdup_index_level_sync_duration_seconds` | Duration of indexing a single level | -| `dipdup_index_level_realtime_duration_seconds` | Duration of last index syncronization | -| `dipdup_index_total_sync_duration_seconds` | Duration of the last index syncronization | -| `dipdup_index_total_realtime_duration_seconds` | Duration of the last index realtime syncronization | +| `dipdup_index_level_realtime_duration_seconds` | Duration of last index synchronization | +| `dipdup_index_total_sync_duration_seconds` | Duration of the last index synchronization | +| `dipdup_index_total_realtime_duration_seconds` | Duration of the last index realtime synchronization | | `dipdup_index_levels_to_sync_total` | Number of levels to reach synced state | | `dipdup_index_levels_to_realtime_total` | Number of levels to reach realtime state | | `dipdup_index_handlers_matched_total` | Index total hits | diff --git a/docs/7.references/4.config-details.md b/docs/7.references/4.config-details.md index d621af16d..30a93c07d 100644 --- a/docs/7.references/4.config-details.md +++ b/docs/7.references/4.config-details.md @@ -160,7 +160,7 @@ datasources: kind: tezos.tzkt url: ${TZKT_URL:-https://api.tzkt.io} http: - retry_count: # retry infinetely + retry_count: # retry infinitely retry_sleep: retry_multiplier: ratelimit_rate: diff --git a/docs/9.release-notes/4.history.md b/docs/9.release-notes/4.history.md index c68cc7de0..5db53218f 100644 --- a/docs/9.release-notes/4.history.md +++ b/docs/9.release-notes/4.history.md @@ -172,7 +172,7 @@ TzKT `buffer_size` option remains available, but it's not required to handle cha Now when DipDup catches unhandled exceptions, a crash dump will be saved to the temporary directory. ``` -dipdup.exceptions.CallbackError: An error occured during callback execution +dipdup.exceptions.CallbackError: An error occurred during callback execution ________________________________________________________________________________ `demo_token.hooks.on_restart` callback execution failed: diff --git a/src/dipdup/exceptions.py b/src/dipdup/exceptions.py index a056bcb4b..110c889db 100644 --- a/src/dipdup/exceptions.py +++ b/src/dipdup/exceptions.py @@ -244,7 +244,7 @@ def _help(self) -> str: @dataclass(repr=False) class CallbackError(Error): - """An error occured during callback execution""" + """An error occurred during callback execution""" module: str exc: Exception @@ -261,7 +261,7 @@ def _help(self) -> str: @dataclass(repr=False) class CallbackTypeError(Error): - """Agrument of invalid type was passed to a callback""" + """Argument of invalid type was passed to a callback""" kind: str name: str