Skip to content

docs(tracer): Fix line highlighting #395

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 19, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions docs/core/tracer.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down