Skip to content

Commit 9aeb074

Browse files
committed
f
1 parent aeb0298 commit 9aeb074

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

docs/learn/scans/learn-by-example.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ from bec_server.scan_server.scans.scan_modifier import scan_hook
5454

5555
class Acquire(ScanBase):
5656
scan_type = ScanType.SOFTWARE_TRIGGERED # (1)!
57-
scan_name = "_v4_acquire" # (2)!
57+
scan_name = "acquire" # (2)!
5858

5959
gui_config = { # (3)!
6060
"Scan Parameters": [
@@ -250,7 +250,7 @@ In this case, there is no special cleanup needed.
250250

251251
The `acquire` scan is a compact example of the shared scan shape:
252252

253-
- the same lifecycle from [Scan Lifecycle](lifecycle.md) appears here unchanged
253+
- the same lifecycle from [Scan Lifecycle](lifecycle.md){data-preview} appears here unchanged
254254
- each hook stays small and focused, even though the page now looks at them one by one
255255
- `prepare_scan` and `scan_core` are the most informative hooks for understanding what this scan actually does
256256
- `at_each_point` shows how per-acquisition work can be factored out of the main loop
@@ -259,11 +259,11 @@ The `acquire` scan is a compact example of the shared scan shape:
259259

260260
## Next Step
261261

262-
After this example, the next useful topic is [scan info](scan-info.md), because `acquire`
262+
After this example, the next useful topic is [scan info](scan-info.md){data-preview}, because `acquire`
263263
updates `scan_info` in `__init__` and `prepare_scan` and then relies on that shared runtime
264264
metadata for progress reporting and scan status messages.
265265

266-
After `scan info`, continue with [scan actions](scan-actions.md) to see the building blocks used in scans for common operations. Afterwards, [scan components](scan-components.md) show how to combine scan actions into reusable scan building blocks.
266+
After `scan info`, continue with [scan actions](scan-actions.md){data-preview} to see the building blocks used in scans for common operations. Afterwards, [scan components](scan-components.md){data-preview} show how to combine scan actions into reusable scan building blocks.
267267

268268
## What to Remember
269269

0 commit comments

Comments
 (0)