From d59aa804fb67450517bf4c8d695cd55f2d252642 Mon Sep 17 00:00:00 2001 From: Michael Brewer Date: Sun, 11 Apr 2021 09:12:33 -0700 Subject: [PATCH] docs(tracer): Fix hl_lines --- docs/core/tracer.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/core/tracer.md b/docs/core/tracer.md index 3dcb5da1e7c..fb99c6c702b 100644 --- a/docs/core/tracer.md +++ b/docs/core/tracer.md @@ -24,7 +24,7 @@ Before your use this utility, your AWS Lambda function [must have permissions](h > Example using AWS Serverless Application Model (SAM) === "template.yml" - ```yaml hl_lines="7 10" + ```yaml hl_lines="6 9" Resources: HelloWorldFunction: Type: AWS::Serverless::Function @@ -119,7 +119,8 @@ You can trace asynchronous functions and generator functions (including context === "Async" - ```python hl_lines="8" + + ```python hl_lines="7" import asyncio import contextlib from aws_lambda_powertools import Tracer