From e4900df26f89a9373c22417a30b6feaaacc6665b Mon Sep 17 00:00:00 2001
From: Marcin Anforowicz <manforowicz@gmail.com>
Date: Sat, 8 Jun 2024 12:54:47 -0700
Subject: [PATCH] Fixed formatting

---
 gday_encryption/src/lib.rs    | 2 +-
 gday_file_transfer/src/lib.rs | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/gday_encryption/src/lib.rs b/gday_encryption/src/lib.rs
index a9104ce..afbd0fb 100644
--- a/gday_encryption/src/lib.rs
+++ b/gday_encryption/src/lib.rs
@@ -10,7 +10,7 @@
 //! [gday_file_transfer](https://crates.io/crates/gday_file_transfer) chose this library
 //! because [rustls](https://docs.rs/rustls/latest/rustls) didn't support
 //! peer-to-peer connections with a shared key.
-//! 
+//!
 #![forbid(unsafe_code)]
 #![warn(clippy::all)]
 
diff --git a/gday_file_transfer/src/lib.rs b/gday_file_transfer/src/lib.rs
index 14892b5..c0e15f2 100644
--- a/gday_file_transfer/src/lib.rs
+++ b/gday_file_transfer/src/lib.rs
@@ -10,7 +10,7 @@
 //!
 //! 2. Peer A calls [`get_file_metas()`] to get a [`Vec`] of [`FileMetaLocal`]
 //! containing metadata about the files they'd like to send.
-//! 
+//!
 //! 3. Peer A calls [`FileOfferMsg::from()`] on the `Vec<FileMetaLocal>`, to get
 //! a serializable [`FileOfferMsg`].
 //!