Skip to content

Commit

Permalink
fix(docs): update example to use correct configuration path
Browse files Browse the repository at this point in the history
  • Loading branch information
entelecheia committed Jun 16, 2023
1 parent ea0271b commit 6e53aa6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/examples.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,10 @@ print("project_workspace_dir:", ws.project_workspace_dir)

## Compose Configuration

We can use the `HyFI.compose` function to load a configuration file. In this example, we'll use the default configuration by specifying `path=__default__`.
We can use the `HyFI.compose` function to load a configuration file. In this example, we'll use the default configuration by specifying `path=__task__`.

```python
cfg = HyFI.compose("path=__default__")
cfg = HyFI.compose("path=__task__")
```

## Display Configuration
Expand Down
4 changes: 2 additions & 2 deletions tests/notebooks/tests.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@
"source": [
"## Compose Configuration\n",
"\n",
"We can use the `HyFI.compose` function to load a configuration file. In this example, we'll use the default configuration by specifying `path=__default__`.\n"
"We can use the `HyFI.compose` function to load a configuration file. In this example, we'll use the default configuration by specifying `path=__task__`.\n"
]
},
{
Expand All @@ -314,7 +314,7 @@
}
],
"source": [
"cfg = HyFI.compose(\"path=__default__\")"
"cfg = HyFI.compose(\"path=__task__\")"
]
},
{
Expand Down

0 comments on commit 6e53aa6

Please sign in to comment.