summaryrefslogtreecommitdiffstats
path: root/zellij-server/src/os_input_output.rs
diff options
context:
space:
mode:
authorAram Drevekenin <aram@poor.dev>2024-03-25 14:22:52 +0100
committerGitHub <noreply@github.com>2024-03-25 14:22:52 +0100
commit223730f04a008237fc0b78b788cfc62dd896d51c (patch)
tree289fec6661209f3784cf622384285f8572340a9f /zellij-server/src/os_input_output.rs
parent8b2263ecf3906ebb7f14ba5f68641966eb06297c (diff)
style(fmt): fix warnings (#3223)
* fix warnings in zellij-server * style(fmt): remove warnings * style(fmt): rustfmt
Diffstat (limited to 'zellij-server/src/os_input_output.rs')
-rw-r--r--zellij-server/src/os_input_output.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/zellij-server/src/os_input_output.rs b/zellij-server/src/os_input_output.rs
index 25e2cafe2..a2d9e36a8 100644
--- a/zellij-server/src/os_input_output.rs
+++ b/zellij-server/src/os_input_output.rs
@@ -443,7 +443,7 @@ struct RawFdAsyncReader {
impl RawFdAsyncReader {
fn new(fd: RawFd) -> RawFdAsyncReader {
RawFdAsyncReader {
- /// The supplied `RawFd` is consumed by the created `RawFdAsyncReader`, closing it when dropped
+ // The supplied `RawFd` is consumed by the created `RawFdAsyncReader`, closing it when dropped
fd: unsafe { AsyncFile::from_raw_fd(fd) },
}
}