mirror of
https://github.com/mainmatter/100-exercises-to-learn-rust
synced 2025-01-30 08:34:50 +01:00
Fix typo
This commit is contained in:
parent
c437f75fcf
commit
45c32d8e41
1 changed files with 1 additions and 1 deletions
|
@ -7,7 +7,7 @@ pub enum Command {
|
||||||
Insert(todo!()),
|
Insert(todo!()),
|
||||||
}
|
}
|
||||||
|
|
||||||
// Start the system by spawning the server the thread.
|
// Start the system by spawning the server thread.
|
||||||
// It returns a `Sender` instance which can then be used
|
// It returns a `Sender` instance which can then be used
|
||||||
// by one or more clients to interact with the server.
|
// by one or more clients to interact with the server.
|
||||||
pub fn launch() -> Sender<Command> {
|
pub fn launch() -> Sender<Command> {
|
||||||
|
|
Loading…
Add table
Reference in a new issue