diff --git a/docs/generated/uarray.rst b/docs/generated/uarray.rst index 896b4acc..c17c5779 100644 --- a/docs/generated/uarray.rst +++ b/docs/generated/uarray.rst @@ -108,7 +108,7 @@ to prefer with a simple context manager. They also have the ability to force a backend, and to skip a backend. This is useful for array-like objects that provide other array-like objects by composing them. For example, Dask could perform all its blockwise function calls with the -following psuedocode (obviously, this is simplified): +following pseudocode (obviously, this is simplified): .. code:: python diff --git a/src/_uarray_dispatch.cxx b/src/_uarray_dispatch.cxx index 918aca4d..af216a23 100644 --- a/src/_uarray_dispatch.cxx +++ b/src/_uarray_dispatch.cxx @@ -1307,7 +1307,7 @@ PyObject * Function::call(PyObject * args_, PyObject * kwargs_) { identifiers.ua_function->get(), args, array_size(args) | PY_VECTORCALL_ARGUMENTS_OFFSET, nullptr)); - // raise BackendNotImplemeted is equivalent to return NotImplemented + // raise BackendNotImplemented is equivalent to return NotImplemented if (!result && PyErr_ExceptionMatches(BackendNotImplementedError.get())) { errors.push_back({py_ref::ref(backend), py_errinf::fetch()}); diff --git a/src/uarray/_uarray.pyi b/src/uarray/_uarray.pyi index 4b6e9401..4aac2b4e 100644 --- a/src/uarray/_uarray.pyi +++ b/src/uarray/_uarray.pyi @@ -49,7 +49,7 @@ class _SetBackendContext: # NOTE: Parametrize w.r.t. `__ua_domain__` when returning, but use `Any` # when used as argument type. Due to lists being invariant the `__ua_domain__` -# protocol will likelly be disruptivelly strict in the latter case, hence the +# protocol will likely be disruptivelly strict in the latter case, hence the # usage of `Any` as an escape hatch. @final class _BackendState: