1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

clipboard: add doc strings to all implementations (#13932)

This commit is contained in:
Larpon
2022-04-05 12:06:32 +02:00
committed by GitHub
parent f5e4d17cf3
commit 0b046c14a8
6 changed files with 51 additions and 0 deletions

View File

@ -2,6 +2,9 @@ module clipboard
import clipboard.x11
// Clipboard represents a system clipboard.
//
// System "copy" and "paste" actions utilize the clipboard for temporary storage.
pub type Clipboard = x11.Clipboard
fn new_clipboard() &Clipboard {