From 33fdd6c359d54a7e7edea19515bb723669bb2347 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=9Acibor=20Rudnicki?= Date: Sun, 7 Dec 2025 03:11:11 +0000 Subject: [PATCH] docs(README.md): fix links to CollectionBase, CollectionCore, SetAdapter, and Collection. --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index cb3ede5..cbb9f96 100644 --- a/README.md +++ b/README.md @@ -63,7 +63,7 @@ The base functionality abstraction for collections. import { CollectionBase } from '@typescript-package/collection'; ``` -[`CollectionBase`](https://github.com/typescript-package/hooks/blob/main/src/core/lib/collection.base.ts) +[`CollectionBase`](https://github.com/typescript-package/collection/blob/main/src/core/lib/collection.base.ts) ### `CollectionCore` @@ -73,7 +73,7 @@ The core abstract class for `Type` collections of elements `Element` type. import { CollectionCore } from '@typescript-package/collection'; ``` -[`CollectionCore`](https://github.com/typescript-package/hooks/blob/main/src/core/lib/collection.core.ts) +[`CollectionCore`](https://github.com/typescript-package/collection/blob/main/src/core/lib/collection.core.ts) ### Adapters @@ -85,7 +85,7 @@ The Set collection adapter. import { SetAdapter } from '@typescript-package/collection'; ``` -[`SetAdapter`](https://github.com/typescript-package/hooks/blob/main/src/adapter/lib/set.adapter.ts) +[`SetAdapter`](https://github.com/typescript-package/collection/blob/main/src/adapter/lib/set.adapter.ts) ### Concrete @@ -106,7 +106,7 @@ collection.delete(29, 31); console.log(`size: `, collection.size); // Output: 5 ``` -[`Collection`](https://github.com/typescript-package/hooks/blob/main/src/lib/collection.ts) +[`Collection`](https://github.com/typescript-package/collection/blob/main/src/lib/collection.class.ts) ## Contributing