Skip to content

Commit e222155

Browse files
ndelvallegillchristian
authored andcommitted
Update code style based on cargo clippy
1 parent b6517da commit e222155

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

src/lib.rs

+10-10
Original file line numberDiff line numberDiff line change
@@ -9,24 +9,24 @@
99
//! # Architecture
1010
//!
1111
//! * `server`: Redis server module. Provides a run function that initiates the server, enabling it
12-
//! to begin handling incoming connections from Redis clients. It manages client requests, executes
13-
//! Redis commands, and handles connection lifecycles.
12+
//! to begin handling incoming connections from Redis clients. It manages client requests, executes
13+
//! Redis commands, and handles connection lifecycles.
1414
//!
1515
//! * `connection`: The Connection module manages a TCP connection for a Redis client. It separates
16-
//! the TCP stream into readable and writable components to facilitate data consumption and
17-
//! transmission. The server uses this connection module to read data from the TCP connection.
16+
//! the TCP stream into readable and writable components to facilitate data consumption and
17+
//! transmission. The server uses this connection module to read data from the TCP connection.
1818
//!
1919
//! * `codec`: This module is responsible for decoding raw TCP byte streams into `Frame` data
20-
//! structures. This is an essential component for translating incoming client requests into
21-
//! meaningful Redis commands.
20+
//! structures. This is an essential component for translating incoming client requests into
21+
//! meaningful Redis commands.
2222
//!
2323
//! * `frame`: This module defines the `Frame` enum, representing different types of Redis protocol
24-
//! messages, and provides parsing and serialization functionalities. It adheres to the RESP (Redis
25-
//! Serialization Protocol) specifications.
24+
//! messages, and provides parsing and serialization functionalities. It adheres to the RESP (Redis
25+
//! Serialization Protocol) specifications.
2626
//!
2727
//! * `store`: This module provides a simple key-value store for managing Redis string data types.
28-
//! It supports basic operations such as setting, getting, removing, and incrementing values
29-
//! associated with keys.
28+
//! It supports basic operations such as setting, getting, removing, and incrementing values
29+
//! associated with keys.
3030
//!
3131
//! ```text
3232
//!

0 commit comments

Comments
 (0)