Skip to content

Commit

Permalink
fix fmt issues
Browse files Browse the repository at this point in the history
  • Loading branch information
temaniarpit27 committed Aug 29, 2024
1 parent 752c271 commit 072d677
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
9 changes: 4 additions & 5 deletions paladin-core/src/channel/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,10 @@
//! - It supports a notion of message acknowledgement.
//! - It supports a notion of resource release.
//! - Rather than returning a tuple of `(sender, receiver)`, it breaks each into
//! separate methods.
//! This is because generally senders and receivers are usually instantiated in
//! separate process, as the channel is meant to facilitate inter process
//! communication. This avoids instantiating unnecessary resources when only one
//! is needed.
//! separate methods. This is because generally senders and receivers are
//! usually instantiated in separate process, as the channel is meant to
//! facilitate inter process communication. This avoids instantiating
//! unnecessary resources when only one is needed.

use std::{
pin::Pin,
Expand Down
4 changes: 2 additions & 2 deletions paladin-core/src/serializer/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
//!
//! # Features:
//! - **Serializable Trait**: A shorthand trait that encapsulates common
//! serialization and deserialization behaviors.
//! It's designed to be used in asynchronous or threaded contexts.
//! serialization and deserialization behaviors. It's designed to be used in
//! asynchronous or threaded contexts.
//! - **Serializer Enum**: Provides a generic way to serialize and deserialize
//! binary data. It supports multiple serialization formats and can be easily
//! extended.
Expand Down

0 comments on commit 072d677

Please sign in to comment.