From b80c43db7bc31422a6a8a86f6a1fb98a039a57cc Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Thu, 6 Feb 2014 15:46:02 -0800 Subject: [PATCH] :memo: doc parameters in clipboard.coffee --- src/clipboard.coffee | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/src/clipboard.coffee b/src/clipboard.coffee index 4a7a8eb23..82d75d2d4 100644 --- a/src/clipboard.coffee +++ b/src/clipboard.coffee @@ -11,7 +11,7 @@ class Clipboard # Creates an `md5` hash of some text. # - # * text: A {String} to hash. + # text - A {String} to hash. # # Returns a hashed {String}. md5: (text) -> @@ -22,8 +22,8 @@ class Clipboard # The metadata associated with the text is available by calling # {.readWithMetadata}. # - # * text: A {String} to store. - # * metadata: An {Object} of additional info to associate with the text. + # text - The {String} to store. + # metadata - The additional info to associate with the text. write: (text, metadata) -> @signatureForMetadata = @md5(text) @metadata = metadata @@ -38,8 +38,9 @@ class Clipboard # Public: Read the text from the clipboard and return both the text and the # associated metadata. # - # Returns an {Object} with a `text` key and a `metadata` key if it has - # associated metadata. + # Returns an {Object} with the following keys: + # :text - The {String} clipboard text. + # :metadata - The metadata stored by an earlier call to {.write}. readWithMetadata: -> text = @read() if @signatureForMetadata is @md5(text)