Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-spengler committed Sep 13, 2020
1 parent 1a97b04 commit c584756
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

```ts

import { ld } from 'https://deno.land/x/deno-lodash/mod.ts';
import { ld } from 'https://deno.land/x/deno_lodash/mod.ts';

let words = ['sky', 'wood', 'forest', 'falcon',
'pear', 'ocean', 'universe'];
Expand All @@ -23,15 +23,15 @@ console.log(`Last element: ${lel}`);

```sh

deno run --allow-read --unstable --allow-env https://deno.land/x/deno-lodash/usage-example.ts
deno run --allow-read --unstable --allow-env https://deno.land/x/deno_lodash/usage-example.ts

```

## Trigger Test Execution

```sh

deno test --allow-read --unstable --allow-env https://deno.land/x/deno-lodash/test.ts
deno test --allow-read --unstable --allow-env https://deno.land/x/deno_lodash/test.ts

```

Expand Down
2 changes: 1 addition & 1 deletion usage-example.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ld } from 'https://deno.land/x/deno-lodash/mod.ts';
import { ld } from 'https://deno.land/x/deno_lodash/mod.ts';

let words = ['sky', 'wood', 'forest', 'falcon',
'pear', 'ocean', 'universe'];
Expand Down

0 comments on commit c584756

Please sign in to comment.