diff --git a/legacy/elementary/src/lib/elc_ctxpopup.h b/legacy/elementary/src/lib/elc_ctxpopup.h index fef41e4521..d428e22ebe 100644 --- a/legacy/elementary/src/lib/elc_ctxpopup.h +++ b/legacy/elementary/src/lib/elc_ctxpopup.h @@ -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 diff --git a/legacy/elementary/src/lib/elc_fileselector_button.h b/legacy/elementary/src/lib/elc_fileselector_button.h index 30273c033d..ad775400cc 100644 --- a/legacy/elementary/src/lib/elc_fileselector_button.h +++ b/legacy/elementary/src/lib/elc_fileselector_button.h @@ -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" diff --git a/legacy/elementary/src/lib/elc_fileselector_entry.h b/legacy/elementary/src/lib/elc_fileselector_entry.h index 4396ba00a6..ec96ff5940 100644 --- a/legacy/elementary/src/lib/elc_fileselector_entry.h +++ b/legacy/elementary/src/lib/elc_fileselector_entry.h @@ -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 diff --git a/legacy/elementary/src/lib/elc_multibuttonentry.h b/legacy/elementary/src/lib/elc_multibuttonentry.h index 246be0870e..6d13cc48d2 100644 --- a/legacy/elementary/src/lib/elc_multibuttonentry.h +++ b/legacy/elementary/src/lib/elc_multibuttonentry.h @@ -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