From 6d23d61d049e4fe188ae540ea1b416c2a4d40370 Mon Sep 17 00:00:00 2001 From: vmarchaud Date: Sun, 13 Sep 2020 16:06:21 +0200 Subject: [PATCH] fix: typo in comments --- plugins/node/opentelemetry-plugin-express/src/express.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/node/opentelemetry-plugin-express/src/express.ts b/plugins/node/opentelemetry-plugin-express/src/express.ts index 9c2bf32c8f..3fc106363b 100644 --- a/plugins/node/opentelemetry-plugin-express/src/express.ts +++ b/plugins/node/opentelemetry-plugin-express/src/express.ts @@ -227,7 +227,7 @@ export class ExpressPlugin extends BasePlugin { } const result = original.apply(this, arguments); /** - * As this point if the callback wasn't called, that means either the + * At this point if the callback wasn't called, that means either the * layer is asynchronous (so it will call the callback later on) or that * the layer directly end the http response, so we'll hook into the "finish" * event to handle the later case.