From 80500963b438624286b4a991338b11d00fbcff77 Mon Sep 17 00:00:00 2001 From: Sky Johnson Date: Tue, 4 Mar 2025 19:16:36 -0600 Subject: [PATCH] update readme syntax --- README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 0b4dff0..35fdde0 100644 --- a/README.md +++ b/README.md @@ -17,9 +17,9 @@ A lightweight, intuitive configuration parser for Go applications with a clean, This parser uses a clean, minimal syntax that's easy to read and write: ``` -host = "localhost" -port = 8080 -debug = true +host "localhost" +port 8080 +debug true allowed_ips { "192.168.1.1" @@ -28,11 +28,11 @@ allowed_ips { } database { - host = "db.example.com" - port = 5432 + host "db.example.com" + port 5432 credentials { - username = "admin" - password = "secure123" + username "admin" + password "secure123" } }