From ce12619bfa58d9fb0fb3e539320ad2204d9c1cd9 Mon Sep 17 00:00:00 2001 From: Alex Ji Date: Wed, 10 Jul 2024 15:36:27 -0500 Subject: [PATCH] Fix typo and remove dup in doc Signed-off-by: Alex Ji --- crates/weaver_forge/README.md | 2 -- docs/developer-guide.md | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/crates/weaver_forge/README.md b/crates/weaver_forge/README.md index 74557574..c07b8b3a 100644 --- a/crates/weaver_forge/README.md +++ b/crates/weaver_forge/README.md @@ -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 ... diff --git a/docs/developer-guide.md b/docs/developer-guide.md index 86429e8e..19ad363d 100644 --- a/docs/developer-guide.md +++ b/docs/developer-guide.md @@ -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