Skip to content

Commit 2f191df

Browse files
committed
format
1 parent daec7b7 commit 2f191df

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/lib.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
//! [SQLPage](https://sql-page.com) is a high-performance web server that converts SQL queries
55
//! into dynamic web applications by rendering [handlebars templates](https://sql-page.com/custom_components.sql)
66
//! with data coming from SQL queries declared in `.sql` files.
7-
//!
7+
//!
88
//! # Overview
99
//!
1010
//! SQLPage is a web server that lets you build data-centric applications using only SQL queries.
@@ -48,15 +48,15 @@
4848
//! - [Custom Components](https://sql-page.com/custom_components.sql)
4949
//! - [Authentication & Sessions](https://sql-page.com/examples/authentication)
5050
//! - [File Uploads](https://sql-page.com/examples/handle_picture_upload.sql)
51-
//!
51+
//!
5252
//! # Example
5353
//!
5454
//! ```sql
5555
//! -- Open a data list component
5656
//! SELECT 'list' as component, 'Users' as title;
57-
//!
57+
//!
5858
//! -- Populate it with data
59-
//! SELECT
59+
//! SELECT
6060
//! name as title,
6161
//! email as description
6262
//! FROM users

0 commit comments

Comments
 (0)