@solidjs/signals 0.12.0 → 0.13.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -179,14 +179,14 @@ const filtered = createProjection(
179
179
  Intercept async loading and error states in the reactive graph:
180
180
 
181
181
  ```typescript
182
- import { createErrorBoundary, createLoadBoundary } from "@solidjs/signals";
182
+ import { createErrorBoundary, createLoadingBoundary } from "@solidjs/signals";
183
183
 
184
184
  createErrorBoundary(
185
185
  () => riskyComputation(),
186
186
  (error, reset) => handleError(error)
187
187
  );
188
188
 
189
- createLoadBoundary(
189
+ createLoadingBoundary(
190
190
  () => asyncContent(),
191
191
  () => showFallback()
192
192
  );