From 9d71b87612d2a8846d898181d41aeb25f01eb7ab Mon Sep 17 00:00:00 2001 From: Fuwn Date: Mon, 29 Mar 2021 15:14:25 -0700 Subject: format: Refactor SQL snippet for consistency --- src/db/tables.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/db/tables.rs b/src/db/tables.rs index e773e9e..eb444d9 100644 --- a/src/db/tables.rs +++ b/src/db/tables.rs @@ -222,7 +222,9 @@ pub struct UserRegistration { /// /// To extract an email address for a given user: /// ```sql -/// select propertyStringValue from UserProperties where userName='John Doe' and propertyId=11; +/// select propertyStringValue +/// from UserProperties +/// where userName='John Doe' and propertyId=11; /// ``` /// /// To extract a list of all recorded email addresses: -- cgit v1.2.3