Skip to content

Commit 8c494c8

Browse files
committed
Format internal links to absolute path format
1 parent c34f731 commit 8c494c8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/components/CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ In these situations, one possible approach is to "soft-deprecate" a given legacy
2222

2323
When adding new components or new props to existing components, it's recommended to prefix them with `__unstable` or `__experimental` until they're stable enough to be exposed as part of the public API.
2424

25-
Learn more on [How to preserve backward compatibility for a React Component](https://github.com/WordPress/gutenberg/blob/trunk/docs/how-to-guides/backward-compatibility/README.md#how-to-preserve-backward-compatibility-for-a-react-component) and [Experimental and Unstable APIs](https://github.com/WordPress/gutenberg/blob/trunk/docs/contributors/code/coding-guidelines.md#experimental-and-unstable-apis).
25+
Learn more on [How to preserve backward compatibility for a React Component](/docs/how-to-guides/backward-compatibility/README.md#how-to-preserve-backward-compatibility-for-a-react-component) and [Experimental and Unstable APIs](/docs/contributors/code/coding-guidelines.md#experimental-and-unstable-apis).
2626

2727
### Components composition
2828

@@ -134,7 +134,7 @@ Components can use this system via a couple of functions:
134134
- they can connect to the Context via `contextConnect`
135135
- they can read the "computed" values from the context via `useContextSystem`
136136

137-
An example of how this is used can be found in the [`Card` component family](https://github.com/WordPress/gutenberg/blob/trunk/packages/components/src/card). For example, this is how the `Card` component injects the `size` and `isBorderless` props down to its `CardBody` subcomponent — which makes it use the correct spacing and border settings "auto-magically".
137+
An example of how this is used can be found in the [`Card` component family](/packages/components/src/card). For example, this is how the `Card` component injects the `size` and `isBorderless` props down to its `CardBody` subcomponent — which makes it use the correct spacing and border settings "auto-magically".
138138

139139
```jsx
140140
//=========================================================================

0 commit comments

Comments
 (0)