fix: doc comment typos

This commit is contained in:
Ashley Wulber 2024-02-28 15:01:39 -05:00
parent 1d5e98d4ea
commit 7a72dd39f0
No known key found for this signature in database
GPG key ID: 5216D4F46A90A820

View file

@ -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<MimeType>, SelectionTarget),
/// Store Data with the given mime types.
Store(Box<dyn AsMimeTypes + Send>, SelectionTarget),
/// Store Data with the given Mime Types
/// Shutdown the worker.
Exit,
}