Skip to content

Commit ec19f4f

Browse files
committed
more link fixups
1 parent 6562fb1 commit ec19f4f

File tree

4 files changed

+2
-4326
lines changed

4 files changed

+2
-4326
lines changed

docs/client-dsl/elements-and-rendering.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ The only major difference between the systems is that JSX compiles directly to R
1313
As each React element is generated it is stored by Hyperstack in a *rendering buffer*, and when the component finishes the rendering block, the buffer is returned as the result of the components render callback. If the expression has a child block (like `DIV { 'hello' }`) the block is passed to the `createElement` as a the child function the same
1414
as JSX would do.
1515

16-
When an expression like this is evaluated (**[see the full example in the section on params...](../params#named-child-components-as-params)**)
16+
When an expression like this is evaluated (**[see the full example in the section on params...](../params.md#named-child-components-as-params)**)
1717
```ruby
1818
Reveal(content: DIV { 'I came from the App' })
1919
```

docs/client-dsl/events-and-callbacks.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ Besides the UI there are several other sources of events:
147147
The way you receive events from these sources depends on the event. Typically though the method will either take a block, or callback proc, or in many cases will return a Promise.
148148
Regardless the event handler will do one of three things: mutate some state within the component, fire an event to a higher level component, or update some shared store.
149149

150-
> For details on updating shared stores, which is often the best answer **[see the chapter on HyperState...](../hyper-state.md)**
150+
> For details on updating shared stores, which is often the best answer **[see the chapter on HyperState...](../hyper-state/README.md)**
151151
152152
You have seen the `every` method used to create events throughout this chapter, here is an example with an HTTP post (which returns a promise.)
153153

0 commit comments

Comments
 (0)