File tree Expand file tree Collapse file tree
packages/solid/src/reactive Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -521,7 +521,7 @@ export function createDeferred<T>(
521521/**
522522 * Creates a conditional signal that only notifies subscribers when entering or exiting their key matching the value
523523 * ```typescript
524- * export function createRenderEffect <T, U>(
524+ * export function createSelector <T, U>(
525525 * source: () => T
526526 * fn: (a: U, b: T) => boolean,
527527 * options?: { name?: string }
@@ -540,7 +540,7 @@ export function createDeferred<T>(
540540 *
541541 * This makes the operation O(2) instead of O(n).
542542 *
543- * @description https://www.solidjs.com/docs/latest/api#createrendereffect
543+ * @description https://www.solidjs.com/docs/latest/api#createselector
544544 */
545545export function createSelector < T , U > (
546546 source : Accessor < T > ,
You can’t perform that action at this time.
0 commit comments