From 95f492cfce1a624889225dd148a800910b0d7209 Mon Sep 17 00:00:00 2001 From: Taras Mankovski Date: Fri, 4 Oct 2024 08:48:16 -0400 Subject: [PATCH] Fix lint errors --- deno-deploy/README.md | 6 +++--- deno-deploy/deno-deploy.ts | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/deno-deploy/README.md b/deno-deploy/README.md index a1fec49..7f48c35 100644 --- a/deno-deploy/README.md +++ b/deno-deploy/README.md @@ -1,5 +1,5 @@ # Deno Deploy -Provides Deno Deploy Effection context with `region`, `deploymentId` and `isDenoDeploy` flag -to detect when running in the Deno Deploy environment. This can be useful when -testing an application that's deployed to Deno Deploy. +Provides Deno Deploy Effection context with `region`, `deploymentId` and +`isDenoDeploy` flag to detect when running in the Deno Deploy environment. This +can be useful when testing an application that's deployed to Deno Deploy. diff --git a/deno-deploy/deno-deploy.ts b/deno-deploy/deno-deploy.ts index 00358b0..f3277b7 100644 --- a/deno-deploy/deno-deploy.ts +++ b/deno-deploy/deno-deploy.ts @@ -12,7 +12,7 @@ export interface DenoDeploy { deploymentId: string | undefined; /** * It holds the region code of the region in which the deployment is running. - * You can use this variable to serve region-specific content. You can refer to the + * You can use this variable to serve region-specific content. You can refer to the * region code from the [regions page](https://docs.deno.com/deploy/manual/regions/). */ region: string | undefined;