Skip to content

Commit

Permalink
Fix a few typos (#810)
Browse files Browse the repository at this point in the history
  • Loading branch information
pitmonticone committed Mar 27, 2023
1 parent b1c8ea6 commit 01bba27
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"As above, the measurement model is discrete, LTI Gaussian. Only the dymanics are continuous (i.e. continuous-discrete)."
"As above, the measurement model is discrete, LTI Gaussian. Only the dynamics are continuous (i.e. continuous-discrete)."
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion src/probnum/randvars/_random_variable.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ class RandomVariable(Generic[ValueType]):
and potentially by similar functions in subclasses.
For instance, this method is useful if (``log``)
:meth:`~ContinousRandomVariable.cdf` and (``log``)
:meth:`~ContinuousRandomVariable.cdf` and (``log``)
:meth:`~ContinuousRandomVariable.pdf` both only work on :class:`numpy.float_`
arguments, but we still want the user to be able to pass Python
:class:`float`. Then :meth:`~RandomVariable.as_value_type`
Expand Down
2 changes: 1 addition & 1 deletion src/probnum/typing.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
different kinds, API types and argument types.
**API types** (``*Type``) are aliases which define custom types
used throughout the library. Objects ofthis type may be supplied as arguments
used throughout the library. Objects of this type may be supplied as arguments
or returned by a method.
**Argument types** (``*Like``) are aliases which define commonly used method
Expand Down

0 comments on commit 01bba27

Please sign in to comment.