Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix casing in docs links #1415

Merged
merged 1 commit into from
May 10, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/addon-author-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,4 +74,4 @@ We support some tools to make V2 addon development more convenient:

## Replacing the {{component}} helper

This section grew into its <a href="./REPLACING-COMPONENT-HELPER.md">own separate document</a>.
This section grew into its [own separate document](./replacing-component-helper.md).
File renamed without changes.
2 changes: 1 addition & 1 deletion packages/addon-dev/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Utilities for working on v2 addons.

For a guide on porting a V1 addon to V2, see https://github.com/embroider-build/embroider/blob/main/PORTING-ADDONS-TO-V2.md
For a guide on porting a V1 addon to V2, see https://github.com/embroider-build/embroider/blob/main/docs/porting-addons-to-v2.md

## Rollup Utilities

Expand Down
2 changes: 1 addition & 1 deletion packages/util/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ ember install @embroider/util

**This function is intended to help addon authors who still need to support Ember < 3.25**. In all other cases, instead of using this you should directly pass components around as values (not as strings) and invoke them directly with angle brackets (not the `{{component}}` helper).

For the full explanation of why and how you would use this, see [the Addon Author Guide](https://github.com/embroider-build/embroider/blob/main/REPLACING-COMPONENT-HELPER.md).
For the full explanation of why and how you would use this, see [the Addon Author Guide](https://github.com/embroider-build/embroider/blob/main/docs/replacing-component-helper.md).

Example usage in Javascript:

Expand Down
2 changes: 1 addition & 1 deletion packages/util/addon/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ function handleString(name, thingWithOwner) {
false,
{
id: 'ensure-safe-component.string',
url: 'https://github.com/embroider-build/embroider/blob/main/REPLACING-COMPONENT-HELPER.md#when-youre-passing-a-component-to-someone-else',
url: 'https://github.com/embroider-build/embroider/blob/main/docs/replacing-component-helper.md#when-youre-passing-a-component-to-someone-else',
until: 'embroider',
for: '@embroider/util',
since: '0.27.0',
Expand Down