Skip to content

Commit 3b5a5f3

Browse files
Tweak docs
1 parent 2d44c78 commit 3b5a5f3

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

docs/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,9 @@ micro:bit Universal Hex from two or more micro:bit Intel Hex files.
3939
This [Universal Hex Creator web tool](https://tech.microbit.org/software/universal-hex-creator/) can
4040
generate a Universal Hex from two Intel Hex files (one for micro:bit V1 and another for micro:bit V2).
4141

42-
An implementation example can be found in the [webtool.html](https://github.com/microbit-foundation/microbit-universal-hex/blob/main/docs/examples/webtool.html) file, which produces this [Universal Hex Creator demo](./examples/webtool.html).
42+
Implementation for [Universal Hex Creator demo](./examples/webtool.html) can be found in [webtool.html](https://github.com/microbit-foundation/microbit-universal-hex/blob/main/docs/examples/webtool.html) file.
4343

44-
An implementation example showing the reverse process of separating a Universal Hex into individual Intel Hex files can be found in the [seperate.html](https://github.com/microbit-foundation/microbit-universal-hex/blob/main/docs/examples/separate.html) file. It produces this [Universal Hex Separator demo](./examples/separate.html).
44+
Implementation example for [Universal Hex Separator demo](./examples/separate.html) can be found in the [seperate.html](https://github.com/microbit-foundation/microbit-universal-hex/blob/main/docs/examples/separate.html) file.
4545

4646
## Related documentation
4747

docs/quick-guide.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ npm install @microbit/microbit-universal-hex
1717

1818
To create a Universal Hex from two Intel Hex strings, use {@link createUniversalHex}.
1919

20+
Implementation for [Universal Hex Creator demo](./examples/webtool.html) can be found in [webtool.html](https://github.com/microbit-foundation/microbit-universal-hex/blob/main/docs/examples/webtool.html) file.
21+
2022
```js
2123
import * as microbitUh from '@microbit/microbit-universal-hex';
2224

@@ -32,9 +34,9 @@ const universalHex = microbitUh.createUniversalHex([
3234
]);
3335
```
3436

35-
See [Universal Hex Creator demo](./examples/webtool.html) for example.
37+
To separate a Universal Hex into its Intel Hex strings, use {@link separateUniversalHex}.
3638

37-
Separate a Universal Hex into its Intel Hex strings, use {@link separateUniversalHex}
39+
Implementation example for [Universal Hex Separator demo](./examples/separate.html) can be found in the [seperate.html](https://github.com/microbit-foundation/microbit-universal-hex/blob/main/docs/examples/separate.html) file.
3840

3941
```js
4042
import * as microbitUh from '@microbit/microbit-universal-hex';

0 commit comments

Comments
 (0)