Change module doc a bit

This commit is contained in:
flyingscorpio@clevo 2022-12-08 17:43:55 +01:00
parent 5e926f1357
commit d88c0ebc64
3 changed files with 3 additions and 3 deletions

View file

@ -1,4 +1,4 @@
//! This modules holds the elements pertaining to ApiClient, a REST API client.
//! Holds the elements pertaining to ApiClient, a REST API client.
use std::fs::read_to_string;
use std::io;

View file

@ -1,4 +1,4 @@
//! This modules holds the elements pertaining to Ear, a listener object.
//! Holds the elements pertaining to Ear, a listener object.
use std::io::{prelude::*, BufReader};
use std::net::{TcpListener, TcpStream};

View file

@ -1,4 +1,4 @@
//! This modules holds the elements pertaining to Mouth, a sender object.
//! Holds the elements pertaining to Mouth, a sender object.
use std::{io::Write, net::TcpStream};