Skip to content

Commit bad1478

Browse files
fix: broken links in API docs for bytes interface, replaced community link (#30)
* fix: broken links in API docs for bytes interface * fix: replaced telegram link with discord * build: broken or duplicate links throw errors * chore: fix typo
1 parent 4fb92b5 commit bad1478

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

docs/api-reference/interfaces/utils.bytes.bytes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ title: Utils.Bytes.Bytes
55

66
# Interface: Bytes<Length\>
77

8-
[Utils](../modules/utils.md).[Bytes](../modules/utils.bytes.md).Bytes
8+
Utils.[Bytes](../modules/utils.bytes.md).Bytes
99

1010
Helper type for dealing with fixed size byte arrays.
1111

docs/api-reference/interfaces/utils.bytes.flexbytes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ title: Utils.Bytes.FlexBytes
55

66
# Interface: FlexBytes<Min, Max\>
77

8-
[Utils](../modules/utils.md).[Bytes](../modules/utils.bytes.md).FlexBytes
8+
Utils.[Bytes](../modules/utils.bytes.md).FlexBytes
99

1010
Helper type for dealing with flexible sized byte arrays.
1111

docs/introduction.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,11 @@ We'd love you to join us! Are you up to the challenge of helping us to create be
1515
## Community
1616
There is a vibrant and buzzing community behind Swarm, get involved in one of our group channels.
1717

18-
- [Swarm](http://swarm.ethereum.org).
18+
- [official Swarm website](http://swarm.ethereum.org).
19+
- [Discord room](https://discord.gg/ykCupZMuww).
1920
- [Beehive Chat on Mattermost](https://beehive.ethswarm.org/).
20-
- [Orange Lounge](https://t.me/joinchat/GoVG8RHYjUpD_-bEnLC4EQ).
2121
- [Twitter @ethswarm](https://twitter.com/ethswarm).
2222
- [reddit channel](https://www.reddit.com/r/ethswarm/).
2323

2424
## Reporting a bug
2525
If anything isn't working, [get in touch and let us know!](https://github.com/ethersphere/bee-js/issues) Every Bee is important to us and we'll get right to work on fixing it for you as soon as possible. 🐝
26-

docusaurus.config.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@ module.exports = {
55
url: 'https://bee-js.ethswarm.org',
66
baseUrl: '/',
77
plugins: [require.resolve('docusaurus-lunr-search')],
8-
onBrokenLinks: 'warn',
8+
onBrokenLinks: 'error',
9+
onBrokenMarkdownLinks: 'error',
10+
onDuplicateRoutes: 'error',
911
favicon: 'img/favicon.ico',
1012
organizationName: 'Swarm', // Usually your GitHub org/user name.
1113
projectName: 'bee-js-docs', // Usually your repo name.

0 commit comments

Comments
 (0)