diff --git a/docs/wiki/get-started/First-Steps.md b/docs/wiki/get-started/First-Steps.md index b7034265..5cdf65fb 100644 --- a/docs/wiki/get-started/First-Steps.md +++ b/docs/wiki/get-started/First-Steps.md @@ -39,7 +39,7 @@ def spread(bid: ts[float], ask: ts[float]) -> ts[float]: The `bid` and `ask` values are expected to be Time Series values. > \[!IMPORTANT\] -> csp nodes is strictly typed, and the type is enforced by the C++ engine. +> csp nodes are strictly typed, and the type is enforced by the C++ engine. This node needs to be executed each time the `ask` and `bid` values change, so we use the following built-in nodes: diff --git a/docs/wiki/get-started/Installation.md b/docs/wiki/get-started/Installation.md index 3a8f4a0a..5acbb6a9 100644 --- a/docs/wiki/get-started/Installation.md +++ b/docs/wiki/get-started/Installation.md @@ -10,9 +10,6 @@ pip install csp ## Install with `conda` -> \[!WARNING\] -> Currently, only supported on MacOS and Linux - ```bash conda install csp --channel conda-forge ``` diff --git a/examples/01_basics/e2_ticking.py b/examples/01_basics/e2_ticking.py index 5377027f..04a09cc8 100644 --- a/examples/01_basics/e2_ticking.py +++ b/examples/01_basics/e2_ticking.py @@ -15,7 +15,7 @@ def accum(val: ts[int]) -> ts[int]: s_sum = 0 if csp.ticked(val): s_sum += val - return val + return s_sum @csp.graph