Skip to content

Commit

Permalink
update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
herzogmatthias committed Sep 13, 2022
1 parent 8ab4f3e commit 2259d72
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,9 @@

## Table of Contents

- [Table of Contents](#table-of-contents)
- [Introduction](#introduction)
- [Quick Start](#quick-start)
- [Quick start](#quick-start)
- [Caches](#caches)
- [Usage](#usage)
- [Contributing](#contributing)
Expand All @@ -40,15 +41,15 @@ the following urls.
- from `deno.land/x`

```ts
import { [cache-name] } from "https://deno.land/x/velo@0.1.4/mod.ts";
import { [cache-name] } from "https://deno.land/x/velo@0.1.6/mod.ts";
```

- from `nest.land`

[![nest badge](https://nest.land/badge.svg)](https://nest.land/package/velo)

```ts
import { [cache-name] } from "https://x.nest.land/velo@0.1.4/mod.ts";
import { [cache-name] } from "https://x.nest.land/velo@0.1.6/mod.ts";
```

## Caches
Expand All @@ -65,7 +66,7 @@ import { [cache-name] } from "https://x.nest.land/velo@0.1.4/mod.ts";
All caches share the same set of methods.

```ts
import { LRU } from "https://deno.land/x/velo@0.1.4/mod.ts";
import { LRU } from "https://deno.land/x/velo@0.1.6/mod.ts";

const lru = new LRU({ capacity: 5 });

Expand Down

0 comments on commit 2259d72

Please sign in to comment.