Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
thisisjofrank committed Jul 4, 2024
1 parent a170e42 commit ca22dda
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
5 changes: 1 addition & 4 deletions runtime/manual/basics/modules/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,10 +61,7 @@ no problem handling this.
**Command:** `deno run ./remote.ts`

```ts
import {
add,
multiply,
} from "https://deno.land/x/[email protected]/mod.ts";
import { add, multiply } from "https://deno.land/x/[email protected]/mod.ts";

function totalCost(outbound: number, inbound: number, tax: number): number {
return multiply(add(outbound, inbound), tax);
Expand Down
5 changes: 1 addition & 4 deletions runtime/tutorials/manage_dependencies.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,7 @@ clean separation between dev and production dependencies.
* This module re-exports the required methods
* from the dependant remote Ramda module.
*/
export {
add,
multiply,
} from "https://deno.land/x/[email protected]/mod.ts";
export { add, multiply } from "https://deno.land/x/[email protected]/mod.ts";
```

This example has the same functionality as the
Expand Down

0 comments on commit ca22dda

Please sign in to comment.