Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: 📝 fixed package name typo #33

Merged
merged 1 commit into from
Nov 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ import {
RedBlackTree,
BiDirectionalMap,
LRUCache,
} from 'jsr:@msk/data-structures';
} from 'jsr:@mskr/data-structures';
```

## Available Data Structures and their detailed documentations
Expand Down
2 changes: 1 addition & 1 deletion docs/bi-map.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ A bidirectional map (BiMap) implementation that maintains one-to-one mappings be
## Usage

```typescript
import { BiDirectionalMap } from 'jsr:@msk/data-structures';
import { BiDirectionalMap } from 'jsr:@mskr/data-structures';

const biMap = new BiDirectionalMap<string, number>();
```
Expand Down
2 changes: 1 addition & 1 deletion docs/binary-heap.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ A generic binary heap implementation that provides both Min Heap and Max Heap va
## Usage

```typescript
import { MinHeap, MaxHeap } from 'jsr:@msk/data-structures';
import { MinHeap, MaxHeap } from 'jsr:@mskr/data-structures';

const minHeap = new MinHeap<number>();
const maxHeap = new MaxHeap<number>();
Expand Down
2 changes: 1 addition & 1 deletion docs/deque.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ A double-ended queue (deque) implementation that efficiently supports insertion
## Usage

```typescript
import { Deque } from 'jsr:@msk/data-structures';
import { Deque } from 'jsr:@mskr/data-structures';

const deque = new Deque<number>();
```
Expand Down
2 changes: 1 addition & 1 deletion docs/doubly-linked-list.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ A doubly linked list implementation that stores elements of type `T` and support
## Usage

```typescript
import { DoublyLinkedList } from 'jsr:@msk/data-structures';
import { DoublyLinkedList } from 'jsr:@mskr/data-structures';

const list = new DoublyLinkedList<number>();
```
Expand Down
2 changes: 1 addition & 1 deletion docs/priority-queue.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ A generic priority queue implementation backed by a binary heap, where elements
## Usage

```typescript
import { PriorityQueue } from 'jsr:@msk/data-structures';
import { PriorityQueue } from 'jsr:@mskr/data-structures';

const queue = new PriorityQueue<number>();
```
Expand Down
2 changes: 1 addition & 1 deletion docs/red-black-tree.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ A generic self-balancing binary search tree implementation that maintains balanc
## Usage

```typescript
import { RedBlackTree } from 'jsr:@msk/data-structures';
import { RedBlackTree } from 'jsr:@mskr/data-structures';

const tree = new RedBlackTree<number>();
```
Expand Down
2 changes: 1 addition & 1 deletion docs/sorted-map.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ A generic key-value collection that maintains entries sorted by key using a Red-
## Usage

```typescript
import { SortedMap } from 'jsr:@msk/data-structures';
import { SortedMap } from 'jsr:@mskr/data-structures';

const map = new SortedMap<number, string>();
```
Expand Down
2 changes: 1 addition & 1 deletion docs/trie.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ A generic trie (prefix tree) implementation that efficiently stores and retrieve
## Usage

```typescript
import { Trie } from 'jsr:@msk/data-structures';
import { Trie } from 'jsr:@mskr/data-structures';

const trie = new Trie<number>();
```
Expand Down