From ca22dda572c4c9062bb875f1604070c57df5f88c Mon Sep 17 00:00:00 2001 From: Jo Franchetti Date: Thu, 4 Jul 2024 17:07:13 +0100 Subject: [PATCH] fmt --- runtime/manual/basics/modules/index.md | 5 +---- runtime/tutorials/manage_dependencies.md | 5 +---- 2 files changed, 2 insertions(+), 8 deletions(-) diff --git a/runtime/manual/basics/modules/index.md b/runtime/manual/basics/modules/index.md index 038794be3..5ea3e0999 100644 --- a/runtime/manual/basics/modules/index.md +++ b/runtime/manual/basics/modules/index.md @@ -61,10 +61,7 @@ no problem handling this. **Command:** `deno run ./remote.ts` ```ts -import { - add, - multiply, -} from "https://deno.land/x/ramda@v0.27.2/mod.ts"; +import { add, multiply } from "https://deno.land/x/ramda@v0.27.2/mod.ts"; function totalCost(outbound: number, inbound: number, tax: number): number { return multiply(add(outbound, inbound), tax); diff --git a/runtime/tutorials/manage_dependencies.md b/runtime/tutorials/manage_dependencies.md index 6e83442dc..7684dbca2 100644 --- a/runtime/tutorials/manage_dependencies.md +++ b/runtime/tutorials/manage_dependencies.md @@ -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/ramda@v0.27.2/mod.ts"; +export { add, multiply } from "https://deno.land/x/ramda@v0.27.2/mod.ts"; ``` This example has the same functionality as the