Skip to content

Commit 25081e3

Browse files
Fixed broken links in documentation (#767)
Co-authored-by: Christopher Bowers <[email protected]>
1 parent 31224fc commit 25081e3

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

packages/fluxible-addons-react/docs/api/FluxibleComponent.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ should be used to wrap your top level component. It provides access to
1010
the methods on the [component
1111
context](../../../../packages/fluxible/docs/api/Components.md#component-context).
1212
13-
You can get access to these methods by using [`useFluxible`]('./useFluxible.md') hook or
14-
[`withFluxible`]('./withFluxible.md') higher-order component.
13+
You can get access to these methods by using [`useFluxible`](./useFluxible.md) hook or
14+
[`withFluxible`](./withFluxible.md) higher-order component.
1515
1616
## Usage
1717

packages/fluxible-addons-react/docs/api/provideContext.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ export default provideContext(Application);
2929
Now when you render the Application component, you can pass in the
3030
component context via the `context` prop and be assured that all
3131
children will have access to through
32-
[`useFluxible`]('./useFluxible.md'),
33-
[`withFluxible`]('./withFluxible.md') or
34-
[`connectToStores`]('./connectToStores.md').
32+
[`useFluxible`](./useFluxible.md),
33+
[`withFluxible`](./withFluxible.md) or
34+
[`connectToStores`](./connectToStores.md).
3535

3636
```js
3737
ReactDOM.renderToString(<Application context={context} />);

0 commit comments

Comments
 (0)