diff --git a/docs/css_types/percentage.md b/docs/css_types/percentage.md index 8deb78c0e..f7daa4a05 100644 --- a/docs/css_types/percentage.md +++ b/docs/css_types/percentage.md @@ -32,6 +32,6 @@ Some rules may clamp the values between `0%` and `100%`. # Integer followed by % widget.styles.color = "red 70%" -# The number can be negative/decimal, althought that may not make sense +# The number can be negative/decimal, although that may not make sense widget.styles.offset = ("-30%", "12.5%") ``` diff --git a/docs/guide/workers.md b/docs/guide/workers.md index c04d2ce78..30073f539 100644 --- a/docs/guide/workers.md +++ b/docs/guide/workers.md @@ -116,7 +116,7 @@ The `state` attribute will contain one of the following values: | ERROR | The worker raised an exception, and `worker.error` will contain the exception. | | SUCCESS | The worker completed successful, and `worker.result` will contain the return value. | -Wokers start with a `PENDING` state, then go to `RUNNING`. From there, they will go to `CANCELLED`, `ERROR` or `SUCCESS`. +Workers start with a `PENDING` state, then go to `RUNNING`. From there, they will go to `CANCELLED`, `ERROR` or `SUCCESS`.