From 9f47c055698e4dbe386cde9001877493e4e880da Mon Sep 17 00:00:00 2001 From: Kim Oliver Drechsel Date: Fri, 14 Jun 2024 16:35:41 +0200 Subject: [PATCH] docs: minor adjustments in provider docs (#12) * docs: minor adjustments in provider docs Signed-off-by: Kim Oliver Drechsel --- docs/index.md | 2 +- internal/provider/provider.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/index.md b/docs/index.md index bf7e625..30317b4 100644 --- a/docs/index.md +++ b/docs/index.md @@ -30,7 +30,7 @@ export BAR=BAZ FOO=BAR # comments at line end are OK too ``` You can also do a YAML(ish) style: -```yaml +```yml FOO: bar BAR: baz ``` diff --git a/internal/provider/provider.go b/internal/provider/provider.go index 55c7c1e..865cf1c 100644 --- a/internal/provider/provider.go +++ b/internal/provider/provider.go @@ -44,7 +44,7 @@ func (p *DotenvProvider) Schema(ctx context.Context, req provider.SchemaRequest, "FOO=BAR # comments at line end are OK too\n" + "```\n" + "You can also do a YAML(ish) style:\n" + - "```yaml \n" + + "```yml \n" + "FOO: bar\n" + "BAR: baz\n" + "```",