Skip to content

Commit 600c6cf

Browse files
committed
clippy
1 parent dbfeea5 commit 600c6cf

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/lib.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
//!
88
//! # Overview
99
//!
10-
//! SQLPage is a web server that lets you build data-centric applications using only SQL queries.
10+
//! `SQLPage` is a web server that lets you build data-centric applications using only SQL queries.
1111
//! It automatically converts database queries into professional-looking web pages using pre-built components
1212
//! for common UI patterns like [tables](https://sql-page.com/component.sql?component=table),
1313
//! [charts](https://sql-page.com/component.sql?component=chart),
@@ -19,7 +19,7 @@
1919
//! - **Built-in Components**: Rich library of [pre-made UI components](https://sql-page.com/documentation.sql)
2020
//! - **Security**: Protection against [SQL injection, XSS and other vulnerabilities](https://sql-page.com/safety.sql)
2121
//! - **Performance**: [Optimized request handling and rendering](https://sql-page.com/performance.sql)
22-
//! - **Database Support**: Works with SQLite, PostgreSQL, MySQL, and MS SQL Server
22+
//! - **Database Support**: Works with `SQLite`, `PostgreSQL`, `MySQL`, and MS SQL Server
2323
//!
2424
//! # Architecture
2525
//!
@@ -34,7 +34,7 @@
3434
//!
3535
//! # Query Processing Pipeline
3636
//!
37-
//! When processing a request, SQLPage:
37+
//! When processing a request, `SQLPage`:
3838
//!
3939
//! 1. Parses the SQL using sqlparser-rs. Once a SQL file is parsed, it is cached for later reuse.
4040
//! 2. Executes queries through sqlx.

0 commit comments

Comments
 (0)