From 309899a13654dc8ed7994e334c6e1663f674edad Mon Sep 17 00:00:00 2001 From: Pedro Ramos Date: Tue, 30 Apr 2024 11:35:11 +0200 Subject: [PATCH] More adjustments --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 1efd56d..70439ff 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ Contains all the functions needed to record the different metrics we collect, li this.record(new Metric('action.invoked', MetricType.Counter, 1, metadata)); } ``` - Example where this function is used: + Example where this function is used: ```ts async init(): Promise { await super.init(); @@ -48,7 +48,7 @@ Contains all the functions needed to record the different metrics we collect, li this.record(new Metric('action.finished', MetricType.Counter, 1, metadata)); } ``` - Example where this function is used: + Example where this function is used: ```ts async finally(error: Error | undefined): Promise { await super.finally(error);