Skip to content

Commit bf486b3

Browse files
authored
Fix broken links in README.md (#1747)
1 parent bed7d42 commit bf486b3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

collector/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Once this build-tag is present, you need provide additional build-tags to includ
2727
- `lambdacomponents.processor.all` includes all available processors
2828
- `lambdacomponents.receiver.all` includes all available receivers
2929

30-
Each available component can also be included explicitly by using its specific build-tag. For a full-list of available components, have a look into the [lambdacomponents](./collector/lambdacomponents) package.
30+
Each available component can also be included explicitly by using its specific build-tag. For a full-list of available components, have a look into the [lambdacomponents](./lambdacomponents) package.
3131

3232
As an example, the full command to publish OpenTelemetry Collector Lambda layer in your AWS account and get its ARN including the following components:
3333
- All receivers
@@ -42,10 +42,10 @@ cd collector && BUILDTAGS="lambdacomponents.custom,lambdacomponents.receiver.all
4242
```
4343

4444
### Adding additional options
45-
To add more options for a customized build, you can add your desired component to the [lambdacomponents](./collector/lambdacomponents) package.
45+
To add more options for a customized build, you can add your desired component to the [lambdacomponents](./lambdacomponents) package.
4646
Make sure to always restrict your addition using the appropriate build-tags.
4747

48-
For example, if you want to add the extension `foo`, the file providing this extension should be located in the [extension](./collector/lambdacomponents/extension) directory have the following build restriction:
48+
For example, if you want to add the extension `foo`, the file providing this extension should be located in the [extension](./lambdacomponents/extension) directory have the following build restriction:
4949
```
5050
//go:build lambdacomponents.custom && (lambdacomponents.all || lambdacomponents.extension.all || lambdacomponents.extension.foo)
5151
```

0 commit comments

Comments
 (0)