From 7a72dd39f01f001faaa4a5b49d9b5d5771794555 Mon Sep 17 00:00:00 2001 From: Ashley Wulber Date: Wed, 28 Feb 2024 15:01:39 -0500 Subject: [PATCH] fix: doc comment typos --- src/worker.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/worker.rs b/src/worker.rs index 8b8fcca..a5bc51b 100644 --- a/src/worker.rs +++ b/src/worker.rs @@ -28,10 +28,10 @@ pub fn spawn( /// Clipboard worker thread command. pub enum Command { - /// Loads data for the first available mime type in the provided list + /// Loads data for the first available mime type in the provided list. Load(Vec, SelectionTarget), + /// Store Data with the given mime types. Store(Box, SelectionTarget), - /// Store Data with the given Mime Types /// Shutdown the worker. Exit, }