summaryrefslogtreecommitdiffstats
path: root/native/src/clipboard.rs
diff options
context:
space:
mode:
Diffstat (limited to 'native/src/clipboard.rs')
-rw-r--r--native/src/clipboard.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/native/src/clipboard.rs b/native/src/clipboard.rs
index ecdccabf..3eeb184d 100644
--- a/native/src/clipboard.rs
+++ b/native/src/clipboard.rs
@@ -1,6 +1,6 @@
/// A buffer for short-term storage and transfer within and between
/// applications.
pub trait Clipboard {
- /// Returns the current content of the [`Clipboard`] as text.
- fn content(&self) -> Option<String>;
+ /// Reads the current content of the [`Clipboard`] as text.
+ fn read(&self) -> Option<String>;
}