Skip to content
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

Fix typo and remove dup in doc #237

Merged
merged 1 commit into from
Jul 10, 2024
Merged
Show file tree
Hide file tree
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
2 changes: 0 additions & 2 deletions crates/weaver_forge/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,6 @@ templates/
...
rust/ <-- Templates to generate the semantic conventions in Rust
...
go/ <-- Templates to generate the semantic conventions in Go
...
schema/
sdk-go/ <-- Templates to generate a Go Client SDK derived from the telemetry schema
...
Expand Down
2 changes: 1 addition & 1 deletion docs/developer-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ To do so we recommend following [Creating a JSON output for your registry](#crea

## Templates - Tips and Tricks

When designing JINJA templates, you can make use the the `debug` function to output the context of the template at any point in time. Simply add `{{ debug(ctx.some_variable) }}` do your template and you'll get a
When designing JINJA templates, you can make use the `debug` function to output the context of the template at any point in time. Simply add `{{ debug(ctx.some_variable) }}` to your template and you'll get a
JSON rendered view of whatever is passed into `debug` at that portion of the template.

## Policies - Tips and tricks
Expand Down
Loading