From 2d798c00d86457da39fd5a47ed9168faa96737b8 Mon Sep 17 00:00:00 2001 From: Luke Davies Date: Thu, 9 May 2019 22:57:48 +0100 Subject: [PATCH] Adjusted README --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index e7419b9..7b3e216 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ This module is meant to provide memory-efficient lazy-evaluation iteration for i Use the following import: ```ts -import { Lazy } from 'https://deno.land/x/lazy@v1.6.0/mod.ts'; +import { Lazy } from 'https://deno.land/x/lazy@v{version}/mod.ts'; ``` Make sure the `@v{version}` tag is the correct one you want. I'd recommend against master, as it could change without notice & might be broken (although I will try not to break it). @@ -79,12 +79,12 @@ The `Lazy` class is the root of the module, all things come from it and are deri ```ts // Static method import. -import { Lazy } from 'https://deno.land/x/lazy@v1.6.0/mod.ts'; +import { Lazy } from 'https://deno.land/x/lazy@v{version}/mod.ts'; const iterable = Lazy.from([1, 2, 3, 4, 5]); // Direct function import. -import { from } from 'https://deno.land/x/lazy@v1.6.0/mod.ts'; +import { from } from 'https://deno.land/x/lazy@v{version}/mod.ts'; const iterable = from([1, 2, 3, 4, 5]); ```