Skip to content

Commit c51a86b

Browse files
robambaluCarreau
authored andcommitted
Merge pull request #189 from Point72/pavithraes/fix-links
Fix links that go to old docs pages
2 parents faee778 + e72e620 commit c51a86b

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ See [our wiki!](https://github.com/Point72/csp/wiki)
6161

6262
## Development
6363

64-
Check out the [Developer Documentation](https://github.com/Point72/csp/wiki/99.-Developer)
64+
Check out the [contribution guide](https://github.com/Point72/csp/wiki/Contribute) and [local development instructions](https://github.com/Point72/csp/wiki/Local-Development-Setup).
6565

6666
## Authors
6767

docs/wiki/api-references/Base-Adapters-API.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ This allows you to connect an edge as a "graph output".
7979
All edges added as outputs will be returned to the caller from `csp.run` as a dictionary of `key: [(datetime, value)]`
8080
(list of datetime, values that ticked on the edge) or if `csp.run` is passed `output_numpy=True`, as a dictionary of
8181
`key: (array, array)` (tuple of two numpy arrays, one with datetimes and one with values).
82-
See [Collecting Graph Outputs](https://github.com/Point72/csp/wiki/0.-Introduction#collecting-graph-outputs)
82+
See [Collecting Graph Outputs](CSP-Graph#collecting-graph-outputs)
8383

8484
Args:
8585

docs/wiki/api-references/Base-Nodes-API.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,7 @@ csp.dynamic_demultiplex(
299299
) → {ts['K']: ts['T']}
300300
```
301301

302-
Similar to `csp.demultiplex`, this version will return a [Dynamic Basket](https://github.com/Point72/csp/wiki/6.-Dynamic-Graphs) output that will dynamically add new keys as they are seen.
302+
Similar to `csp.demultiplex`, this version will return a [Dynamic Basket](Create-Dynamic-Baskets) output that will dynamically add new keys as they are seen.
303303

304304
## `csp.dynamic_collect`
305305

@@ -309,7 +309,7 @@ csp.dynamic_collect(
309309
) → ts[{'K': 'T'}]
310310
```
311311

312-
Similar to `csp.collect`, this function takes a [Dynamic Basket](https://github.com/Point72/csp/wiki/6.-Dynamic-Graphs) input and returns a dictionary of the key-value pairs corresponding to the values that ticked.
312+
Similar to `csp.collect`, this function takes a [Dynamic Basket](Create-Dynamic-Baskets) input and returns a dictionary of the key-value pairs corresponding to the values that ticked.
313313

314314
## `csp.drop_nans`
315315

docs/wiki/concepts/CSP-Graph.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ result:
8484

8585
Note that the result is a list of `(datetime, value)` tuples.
8686

87-
You can also use [csp.add_graph_output](<https://github.com/Point72/csp/wiki/1.-Generic-Nodes-(csp.baselib)#adapters>) to add outputs.
87+
You can also use [csp.add_graph_output](Base-Adapters-API#cspadd_graph_output) to add outputs.
8888
These do not need to be in the top-level graph called directly from `csp.run`.
8989

9090
This gives the same result:

docs/wiki/concepts/CSP-Node.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ basket and react to it as well as access its current value
155155
## **Node Outputs**
156156

157157
Nodes can return any number of outputs (including no outputs, in which case it is considered an "output" or sink node,
158-
see [Graph Pruning](https://github.com/Point72/csp/wiki/0.-Introduction#graph-pruning)).
158+
see [Graph Pruning](CSP-Graph#graph-pruning)).
159159
Nodes with single outputs can return the output as an unnamed output.
160160
Nodes returning multiple outputs must have them be named.
161161
When a node is called at graph building time, if it is a single unnamed node the return variable is an edge representing the output which can be passed into other nodes.

docs/wiki/dev-guides/Contribute.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ For **bug reports** or **small feature requests**, please open an issue on our [
44

55
For **questions** or to discuss **larger changes or features**, please use our [discussions page](https://github.com/Point72/csp/discussions).
66

7-
For **contributions**, please see our [developer documentation](https://github.com/Point72/csp/wiki/99.-Developer). We have `help wanted` and `good first issue` tags on our issues page, so these are a great place to start.
7+
For **contributions**, please see our [developer documentation](Local-Development-Setup). We have `help wanted` and `good first issue` tags on our issues page, so these are a great place to start.
88

99
For **documentation updates**, make PRs that update the pages in `/docs/wiki`. The documentation is pushed to the GitHub wiki automatically through a GitHub workflow. Note that direct updates to this wiki will be overwritten.

0 commit comments

Comments
 (0)