Skip to content

Commit 4e20c71

Browse files
authored
Remove all references to the development docs (#147)
1 parent ba8d8ed commit 4e20c71

File tree

4 files changed

+3
-20
lines changed

4 files changed

+3
-20
lines changed

blog/2023-07-08-boa-release-17.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ Boa now has internationalization support! Although we are still working on full
257257
- [`Intl.Segmenter`][segmenter]
258258

259259
Internationalization data can be pretty expensive at times: the default data included by Boa is 10.6 MB, which is why
260-
we allow customizing the data provider used by the engine with the [`ContextBuilder::icu_provider`][ctx_provider] hook.
260+
we allow customizing the data provider used by the engine with the `ContextBuilder::icu_provider` hook.
261261
For more information on how to generate custom internationalization data, you can check out the
262262
[**data management tutorial**][data] from [`icu4x`], the internationalization library used in Boa. Shoutout to the
263263
`icu4x` team, who are the ones that made all of this possible!
@@ -270,8 +270,6 @@ size.
270270
[list]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/ListFormat
271271
[locale]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/Collator
272272
[segmenter]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/Segmenter
273-
[provider]: https://boajs.dev/boa/doc/boa_engine/context/enum.BoaProvider.html
274-
[ctx_provider]: https://boajs.dev/boa/doc/boa_engine/context/struct.ContextBuilder.html#method.icu_provider
275273
[data]: https://github.com/unicode-org/icu4x/blob/main/docs/tutorials/data_management.md#data-management-in-icu4x
276274
[`icu4x`]: https://github.com/unicode-org/icu4x
277275

docs/contributing/CONTRIBUTING.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -64,11 +64,6 @@ Boa has some pre-defined tasks in ".vscode/tasks.json"
6464
If you don't want to install everything on your machine, you can use the Dockerfile.
6565
Start VSCode in container mode (you may need the docker container plugin) and use the Dockerfile.
6666

67-
## Documentation
68-
69-
We have specific documentation for development, updated on each commit to the `main` branch, with all the private
70-
methods visible here: https://boajs.dev/boa/doc/
71-
7267
## Communication
7368

7469
We have a Discord server, feel free to ask questions [here](https://discord.gg/tUFFk9Y)

docusaurus.config.ts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -117,13 +117,9 @@ const config: Config = {
117117
to: "/docs/intro",
118118
},
119119
{
120-
label: "Release API",
120+
label: "API Documentation",
121121
href: "https://docs.rs/boa_engine/latest",
122122
},
123-
{
124-
label: "Development API",
125-
href: "https://boajs.dev/boa/doc/boa_engine/index.html",
126-
},
127123
],
128124
},
129125
{

src/components/home/index.tsx

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,7 @@ function HomepageHeader() {
3030
className={"button button--secondary " + styles.buttonMargin}
3131
href="https://docs.rs/boa_engine/latest/boa_engine/"
3232
>
33-
Release Documentation
34-
</Link>
35-
<Link
36-
className={"button button--secondary " + styles.buttonMargin}
37-
href="https://boajs.dev/boa/doc/boa_engine/index.html"
38-
>
39-
Dev Documentation
33+
Documentation
4034
</Link>
4135
</div>
4236
</div>

0 commit comments

Comments
 (0)