Skip to content

Commit

Permalink
fix: docs build dead links
Browse files Browse the repository at this point in the history
  • Loading branch information
MingweiSamuel committed Jun 30, 2023
1 parent 3d0287c commit ab7bc16
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/docs/hydroflow/architecture/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ convert a graph into in-out trees.

Hydroflow's _Surface Syntax_ hides
the distinction between these two layers. It offers a natural `Iterator`-like chaining syntax for building
graphs that get parsed and compiled into a scheduled graph of one or more compiled subgraphs. Please see the [Surface Syntax](../syntax/index) docs for more information.
graphs that get parsed and compiled into a scheduled graph of one or more compiled subgraphs. Please see the [Surface Syntax](../syntax/) docs for more information.

Alternatively, the _Core API_ allows you to interact with handoffs directly at a low
level. It doesn't provide any notion of chainable operators. You can use Rust `Iterator`s
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/hydroflow/syntax/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import exampleCode from '!!raw-loader!../../../../hydroflow/examples/example_syn
# Hydroflow Surface Syntax
The natural way to write a Hydroflow program is using the _Surface Syntax_ documented here.
It is a chained `Iterator`-style syntax of operators built into Hydroflow that should be sufficient
for most uses. If you want lower-level access you can work with the `Core API` documented in the [Architecture](../architecture/index) section.
for most uses. If you want lower-level access you can work with the `Core API` documented in the [Architecture](../architecture/) section.

In this chapter we go over the syntax piece by piece: how to [embed surface syntax in Rust](./surface_embedding) and how to specify [_flows_](./surface_flows), which consist of [_data sources_](./surface_data) flowing through [_operators_](./surface_ops_gen).

Expand Down

0 comments on commit ab7bc16

Please sign in to comment.