Fix typos in documentation #1
authorsanjeev <sanjeev@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Tue, 14 Feb 2012 08:50:20 +0000 (08:50 +0000)
committersanjeev <sanjeev@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Tue, 14 Feb 2012 08:50:20 +0000 (08:50 +0000)
Signed-off-by: Sanjeev BA <iamsanjeev@gmail.com>
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@67904 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

src/lib/elc_ctxpopup.h
src/lib/elc_fileselector_button.h
src/lib/elc_fileselector_entry.h
src/lib/elc_multibuttonentry.h

index fef41e4..d428e22 100644 (file)
@@ -4,7 +4,7 @@
  * @image html img/widget/ctxpopup/preview-00.png
  * @image latex img/widget/ctxpopup/preview-00.eps
  *
- * @brief Context popup widet.
+ * @brief Context popup widget.
  *
  * A ctxpopup is a widget that, when shown, pops up a list of items.
  * It automatically chooses an area inside its parent object's view
@@ -14,7 +14,7 @@
  * items have a label and/or an icon. It is intended for a small
  * number of items (hence the use of list, not genlist).
  *
- * @note Ctxpopup is a especialization of @ref Hover.
+ * @note Ctxpopup is a specialization of @ref Hover.
  *
  * Signals that you can add callbacks for are:
  * "dismissed" - the ctxpopup was dismissed
index 30273c0..ad77540 100644 (file)
@@ -16,7 +16,7 @@
  *
  * This widget encapsulates operations on its internal file
  * selector on its own API. There is less control over its file
- * selector than that one would have instatiating one directly.
+ * selector than that one would have instantiating one directly.
  *
  * The following styles are available for this button:
  * @li @c "default"
index 4396ba0..ec96ff5 100644 (file)
@@ -18,7 +18,7 @@
  *
  * This widget encapsulates operations on its internal file
  * selector on its own API. There is less control over its file
- * selector than that one would have instatiating one directly.
+ * selector than that one would have instantiating one directly.
  *
  * Smart callbacks one can register to:
  * - @c "changed" - The text within the entry was changed
index 246be08..6d13cc4 100644 (file)
@@ -111,7 +111,7 @@ EAPI void                       elm_multibuttonentry_shrink_mode_set(Evas_Object
  *
  * @param obj The multibuttonentry object
  * @param label The label of new item
- * @param data The ponter to the data to be attached
+ * @param data The pointer to the data to be attached
  * @return A handle to the item added or NULL if not possible
  *
  * @ingroup Multibuttonentry
@@ -123,7 +123,7 @@ EAPI Elm_Object_Item *elm_multibuttonentry_item_prepend(Evas_Object *obj, const
  *
  * @param obj The multibuttonentry object
  * @param label The label of new item
- * @param data The ponter to the data to be attached
+ * @param data The pointer to the data to be attached
  * @return A handle to the item added or NULL if not possible
  *
  * @ingroup Multibuttonentry
@@ -137,7 +137,7 @@ EAPI Elm_Object_Item *elm_multibuttonentry_item_append(Evas_Object *obj, const c
  * @param obj The multibuttonentry object
  * @param before The item before which to add it
  * @param label The label of new item
- * @param data The ponter to the data to be attached
+ * @param data The pointer to the data to be attached
  * @return A handle to the item added or NULL if not possible
  *
  * @ingroup Multibuttonentry
@@ -150,7 +150,7 @@ EAPI Elm_Object_Item *elm_multibuttonentry_item_insert_before(Evas_Object *obj,
  * @param obj The multibuttonentry object
  * @param after The item after which to add it
  * @param label The label of new item
- * @param data The ponter to the data to be attached
+ * @param data The pointer to the data to be attached
  * @return A handle to the item added or NULL if not possible
  *
  * @ingroup Multibuttonentry
@@ -256,7 +256,7 @@ EAPI Elm_Object_Item *elm_multibuttonentry_item_next_get(const Elm_Object_Item *
  * parameter to NULL. This will also prevent any following filters from being
  * called.
  *
- * @param obj The multibuttonentryentry object
+ * @param obj The multibuttonentry object
  * @param func The function to use as item filter
  * @param data User data to pass to @p func
  *
@@ -265,7 +265,7 @@ EAPI Elm_Object_Item *elm_multibuttonentry_item_next_get(const Elm_Object_Item *
 EAPI void                       elm_multibuttonentry_item_filter_append(Evas_Object *obj, Elm_Multibuttonentry_Item_Filter_callback func, void *data);
 
 /**
- * Prepend a filter function for text inserted in the Multibuttentry
+ * Prepend a filter function for text inserted in the Multibuttonentry
  *
  * Prepend the given callback to the list. See elm_multibuttonentry_item_filter_append()
  * for more information