From db0270178a076d386f979625f54b04bbdd30f90c Mon Sep 17 00:00:00 2001 From: Michael Hoepler <147169582+MichaelHoepler@users.noreply.github.com> Date: Thu, 25 Jan 2024 16:50:33 +0100 Subject: [PATCH] Fixing more link errors --- docs/docs/setting-up/other-specifications/engines/wasm.md | 4 ++-- docs/docs/setting-up/running-node/job-selection.md | 2 +- .../setting-up/workload-onboarding/python-script/index.md | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/docs/setting-up/other-specifications/engines/wasm.md b/docs/docs/setting-up/other-specifications/engines/wasm.md index 548aba9efe..e65ffb01d0 100644 --- a/docs/docs/setting-up/other-specifications/engines/wasm.md +++ b/docs/docs/setting-up/other-specifications/engines/wasm.md @@ -8,7 +8,7 @@ sidebar_label: Wasm ## `WASM` Engine Parameters -- **EntryModule** `(`[`InputSource`](../../job-specification/input-source.md)` : required)`: Specifies the WASM module that contains the start function or the main execution code of the task. The InputSource should point to the location of the WASM binary. +- **EntryModule** `(`[`InputSource`](../../jobs/job-specification/input-source.md)` : required)`: Specifies the WASM module that contains the start function or the main execution code of the task. The InputSource should point to the location of the WASM binary. - **Entrypoint** `(string: )`: The name of the function within the EntryModule to execute. For WASI jobs, this should typically be `_start`. The entrypoint function should have zero parameters and zero results. @@ -16,7 +16,7 @@ sidebar_label: Wasm - **EnvironmentVariables** `(map[string]string: )`: A mapping of environment variable keys to their values, made available within the executing WASM environment. -- **ImportModules** `(`[`InputSource`](../../job-specification/input-source.md)`[] : optional)`: An array of InputSources pointing to additional WASM modules. The exports from these modules will be available as imports to the EntryModule, enabling modular and reusable WASM code. +- **ImportModules** `(`[`InputSource`](../../jobs/job-specification/input-source.md)`[] : optional)`: An array of InputSources pointing to additional WASM modules. The exports from these modules will be available as imports to the EntryModule, enabling modular and reusable WASM code. ### Example diff --git a/docs/docs/setting-up/running-node/job-selection.md b/docs/docs/setting-up/running-node/job-selection.md index 16c7e96232..52dc31b8b5 100644 --- a/docs/docs/setting-up/running-node/job-selection.md +++ b/docs/docs/setting-up/running-node/job-selection.md @@ -15,7 +15,7 @@ policy. | Node.Compute.JobSelection.ProbeExec | `--job-selection-probe-exec` | unused | Use the result of an external program to decide if we should take on the job. | | Node.Compute.JobSelection.ProbeHttp | `--job-selection-probe-http` | unused | Use the result of a HTTP POST to decide if we should take on the job. | | Node.Compute.JobSelection.RejectStatelessJobs | `--job-selection-reject-stateless` | False | Reject jobs that don't specify any [input data](../data-ingestion/index.md). | -| Node.Compute.JobSelection.AcceptNetworkedJobs | `--job-selection-accept-networked` | False | Accept jobs that require [network connections](../next-steps/networking.md). | +| Node.Compute.JobSelection.AcceptNetworkedJobs | `--job-selection-accept-networked` | False | Accept jobs that require [network connections](../networking-instructions/networking.md). | ## Job selection probes diff --git a/docs/docs/setting-up/workload-onboarding/python-script/index.md b/docs/docs/setting-up/workload-onboarding/python-script/index.md index 1955e5ec9b..946db45b32 100644 --- a/docs/docs/setting-up/workload-onboarding/python-script/index.md +++ b/docs/docs/setting-up/workload-onboarding/python-script/index.md @@ -17,7 +17,7 @@ To get started, you need to install the Bacalhau client, see more information [h ## Executing Bacalhau Jobs with Python Scripts -To demonstrate this example, I will use the data generated from the [ethereum analysis example](../../data-engineering/blockchain-etl/index.md). This produced a list of hashes that I will iterate over and execute a job for each one. +To demonstrate this example, I will use the data generated from a Ethereum example. This produced a list of hashes that I will iterate over and execute a job for each one. ```python @@ -191,4 +191,4 @@ Success! We've now executed a bunch of jobs in parallel using Python. This is a You might also be interested in the following examples: -* [Analysing Ethereum Data with Python](../../data-engineering/blockchain-etl/index.md) +* [Analysing Data with Python Pandas](../python-pandas/index.md)