aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorFuwn <[email protected]>2021-03-29 15:14:25 -0700
committerFuwn <[email protected]>2021-03-29 15:14:25 -0700
commit9d71b87612d2a8846d898181d41aeb25f01eb7ab (patch)
tree427906f36572f9951109b33ef9ecd13955b5e009 /src
parentetc: Annotation (diff)
downloadwhirl-9d71b87612d2a8846d898181d41aeb25f01eb7ab.tar.xz
whirl-9d71b87612d2a8846d898181d41aeb25f01eb7ab.zip
format: Refactor SQL snippet for consistency
Diffstat (limited to 'src')
-rw-r--r--src/db/tables.rs4
1 files changed, 3 insertions, 1 deletions
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: