From be61f11ad5f64add3a62b6f1b96b12cfd3b36435 Mon Sep 17 00:00:00 2001 From: Martin Date: Wed, 15 Feb 2023 11:05:42 +0300 Subject: [PATCH] Update docs --- funml/data/records.py | 2 +- funml/expressions.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/funml/data/records.py b/funml/data/records.py index 560c113..96c174e 100644 --- a/funml/data/records.py +++ b/funml/data/records.py @@ -54,7 +54,7 @@ def record(cls: Type[R]) -> Type[R]: cls: the class to transform into a record Returns: - A class which can act as a record of the particular schema + A class which can act as a record of the particular schema \ set by the attributes. Example: diff --git a/funml/expressions.py b/funml/expressions.py index 15cf7b9..9319cc3 100644 --- a/funml/expressions.py +++ b/funml/expressions.py @@ -17,7 +17,7 @@ def val(v: Union[Expression, Callable, Any]) -> Expression: v: the value e.g. 90 or function e.g. `min` Returns: - an ml [`Expression`][funml.types.Expression] that can be piped to other ml-expressions or invoked to return its + an ml [`Expression`][funml.types.Expression] that can be piped to other ml-expressions or invoked to return its\ output. Example: