diff options
author | Taehyub Kim <taehyub.kim@samsung.com> | 2020-03-05 02:54:21 +0000 |
---|---|---|
committer | Marcel Hollerbach <mail@marcel-hollerbach.de> | 2020-03-17 10:29:51 +0100 |
commit | efd09a21d98c5fc486bf0899604435b3062cbe98 (patch) | |
tree | 3fe77b89e6875ed0157fd79d0965103008408675 /src | |
parent | e38ea9b958509df92909b77e16caa9ec6b1d3400 (diff) | |
download | efl-efd09a21d98c5fc486bf0899604435b3062cbe98.tar.gz |
ecore_cocoa: fix wrong word in documentation
modified the wrong word for mime_type parameters
Reviewed-by: Xavi Artigas <xavierartigas@yahoo.es>
Differential Revision: https://phab.enlightenment.org/D11446
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/ecore_cocoa/Ecore_Cocoa.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/ecore_cocoa/Ecore_Cocoa.h b/src/lib/ecore_cocoa/Ecore_Cocoa.h index ca0a835be2..a545d584d7 100644 --- a/src/lib/ecore_cocoa/Ecore_Cocoa.h +++ b/src/lib/ecore_cocoa/Ecore_Cocoa.h @@ -545,7 +545,7 @@ EAPI void ecore_cocoa_terminate_cb_set(Ecore_Cocoa_Terminate_Cb cb) * Sets the clipboard of Cocoa (NSPasteboard) * @param data The contents to be set in the clipboard * @param size The size in bytes of @c data - * @param mine_type + * @param mime_type The type of object to set the data * @return EINA_TRUE on success, EINA_FALSE on failure */ EAPI Eina_Bool ecore_cocoa_clipboard_set(const void *data, @@ -555,7 +555,7 @@ EAPI Eina_Bool ecore_cocoa_clipboard_set(const void *data, /* * Gets the contents of the Cocoa clipboard * @param size Pointer used to retrieve the size of the received contents - * @param mine_type The type of object to retrieve from the clipboard + * @param mime_type The type of object to retrieve from the clipboard * @return The data retrieved from the clipboard. NULL on failure * */ |