Skip to content

Commit a684d3f

Browse files
mxmxchereYatekii
authored andcommitted
Update basics.mdx
lil typo fix
1 parent e134064 commit a684d3f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/content/docs/library/basics.mdx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ let probe = probes[0].open()?;
2929
Now you can access all the functionality a probe can offer. Not all probes offer the same functionality, which is why some calls may return a negative `Result`.
3030

3131
```rs
32+
3233
// Perform a hard reset of the connected target via the probe.
3334
probe.target_reset()?;
3435

@@ -67,7 +68,7 @@ In the previous sections we have learned how we attach to a core.
6768
Sometimes you want to access the core operations in quick fashion.
6869
This is what [Session::auto_attach()](https://docs.rs/probe-rs/*/probe_rs/struct.Session.html#method.auto_attach) is for.
6970
It lets you attach to the Core without first opening a Probe.
70-
It will try to open a connected prbe, and select the Core as best as it can
71+
It will try to open a connected probe, and select the Core as best as it can
7172

7273
```rs
7374
let session = Session::auto_attach("chip_name")?;

0 commit comments

Comments
 (0)