aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
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: