From 29cf388563543de687dc2a59d66217aa6d72aa80 Mon Sep 17 00:00:00 2001 From: Juliya Smith Date: Mon, 14 Oct 2024 15:54:09 -0600 Subject: [PATCH] docs: use a different example value --- docs/userguides/config.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/userguides/config.md b/docs/userguides/config.md index 475e53c071..d081623fd8 100644 --- a/docs/userguides/config.md +++ b/docs/userguides/config.md @@ -265,7 +265,7 @@ These types of settings lack sophisticated Pydantic validation and are limited i ```yaml my_project_key: - my_project_setting: "123" + my_project_setting: "my_value" ``` Then, to access it (or any setting for that matter): @@ -273,5 +273,5 @@ Then, to access it (or any setting for that matter): ```python from ape import project -setting = project.config.my_project_key.my_project_setting # "123" +setting = project.config.my_project_key.my_project_setting # my_value ```