From 8d1fb68377b653d96f676803e3242c468d9109fe Mon Sep 17 00:00:00 2001 From: Tech <49742865+DebitCardz@users.noreply.github.com> Date: Sat, 6 Jul 2024 00:47:23 -0400 Subject: [PATCH] docs: update usage Signed-off-by: Tech <49742865+DebitCardz@users.noreply.github.com> --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index bfdefe8..0148d96 100644 --- a/README.md +++ b/README.md @@ -136,8 +136,8 @@ suspend fun main() { ) ).connect() - val model = connection.query("SELECT example FROM table LIMIT 1;") - .singleNullable() + val model = connection.query("SELECT example FROM table LIMIT 1;") + .singleNullable() println(model?.example) } ```