From 12811b5554ea0cd45a14d58e826460f3992915c2 Mon Sep 17 00:00:00 2001 From: alireza khojastehfar Date: Tue, 20 Feb 2024 17:29:42 +0330 Subject: [PATCH] Update README.md (#263) fixed naming mistake of `camel case` to `snake case` --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1fe310a..58bc789 100644 --- a/README.md +++ b/README.md @@ -52,7 +52,7 @@ var personMetadata = table.Metadata{ var personTable = table.New(personMetadata) // Person represents a row in person table. -// Field names are converted to camel case by default, no need to add special tags. +// Field names are converted to snake case by default, no need to add special tags. // A field will not be persisted by adding the `db:"-"` tag or making it unexported. type Person struct { FirstName string