Skip to content

Commit 1811ec8

Browse files
authored
docs: fix some typos (#1824)
1 parent 659af2d commit 1811ec8

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

docs/core/logger.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ These settings will be used across all logs emitted:
5151
| **Logging level** | Sets how verbose Logger should be, from the most verbose to the least verbose (no logs) | `POWERTOOLS_LOG_LEVEL` | `INFO` | `DEBUG`, `INFO`, `WARN`, `ERROR`, `CRITICAL`, `SILENT` | `ERROR` | `logLevel` |
5252
| **Sample rate** | Probability that a Lambda invocation will print all the log items regardless of the log level setting | `POWERTOOLS_LOGGER_SAMPLE_RATE` | `0` | `0.0` to `1.0` | `0.1` | `sampleRateValue` |
5353

54-
See all enivronment variables in the [Environment variables](../index.md/#environment-variables) section.
54+
See all environment variables in the [Environment variables](../index.md/#environment-variables) section.
5555
Check API docs to learn more about [Logger constructor options](https://docs.powertools.aws.dev/lambda/typescript/latest/api/types/_aws_lambda_powertools_logger.types.ConstructorOptions.html){target="_blank"}.
5656

5757
#### Example using AWS Serverless Application Model (SAM)

docs/core/tracer.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Tracer is an opinionated thin wrapper for [AWS X-Ray SDK for Node.js](https://gi
2222

2323
## Getting started
2424

25-
!!! note "Tracer relies on AWS X-Ray SDK over [OpenTelememetry Distro (ADOT)](https://aws-otel.github.io/docs/getting-started/lambda){target="_blank"} for optimal cold start (lower latency)."
25+
!!! note "Tracer relies on AWS X-Ray SDK over [OpenTelemetry Distro (ADOT)](https://aws-otel.github.io/docs/getting-started/lambda){target="_blank"} for optimal cold start (lower latency)."
2626

2727
### Installation
2828

@@ -268,7 +268,7 @@ Use **`POWERTOOLS_TRACER_CAPTURE_RESPONSE=false`** environment variable to instr
268268
2. You might manipulate **streaming objects that can be read only once**; this prevents subsequent calls from being empty
269269
3. You might return **more than 64K** of data _e.g., `message too long` error_
270270

271-
Alternatively, use the `captureResponse: false` option in both `tracer.captureLambdaHandler()` and `tracer.captureMethod()` decorators, or use the same option in the Middy `captureLambdaHander` middleware to instruct Tracer **not** to serialize function responses as metadata.
271+
Alternatively, use the `captureResponse: false` option in both `tracer.captureLambdaHandler()` and `tracer.captureMethod()` decorators, or use the same option in the Middy `captureLambdaHandler` middleware to instruct Tracer **not** to serialize function responses as metadata.
272272

273273
=== "method.ts"
274274

docs/maintainers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ Some examples using our initial and new RFC templates: [#447](https://github.com
160160

161161
### Releasing a new version
162162

163-
Firstly, make sure all the PRs that you want to include in the release are merged into the `main` banch.
163+
Firstly, make sure all the PRs that you want to include in the release are merged into the `main` branch.
164164

165165
Next, run the integration tests one last time to make sure everything is working as expected. See [Run end to end tests](#run-end-to-end-tests) for more details.
166166

0 commit comments

Comments
 (0)