summaryrefslogtreecommitdiffstats
path: root/include/libimobiledevice/libimobiledevice.h
diff options
context:
space:
mode:
authorGravatar Yves-Alexis Perez2018-10-08 13:39:31 +0200
committerGravatar Nikias Bassen2019-06-23 11:14:53 +0200
commit41ce2454b7f0b4a679070ea377545ba34f70095f (patch)
tree0cc4c5b04c9e2b0e9de7672c0e61e0184614ca04 /include/libimobiledevice/libimobiledevice.h
parentb8df28038f3ca8a3a8be6569cea251d2506c3171 (diff)
downloadlibimobiledevice-41ce2454b7f0b4a679070ea377545ba34f70095f.tar.gz
libimobiledevice-41ce2454b7f0b4a679070ea377545ba34f70095f.tar.bz2
replace all occurrences of occured by occurred
Do it in all comments and errors messages
Diffstat (limited to 'include/libimobiledevice/libimobiledevice.h')
-rw-r--r--include/libimobiledevice/libimobiledevice.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/libimobiledevice/libimobiledevice.h b/include/libimobiledevice/libimobiledevice.h
index 729bc89..8f8589d 100644
--- a/include/libimobiledevice/libimobiledevice.h
+++ b/include/libimobiledevice/libimobiledevice.h
@@ -60,7 +60,7 @@ enum idevice_event_type {
60}; 60};
61 61
62/* event data structure */ 62/* event data structure */
63/** Provides information about the occured event. */ 63/** Provides information about the occurred event. */
64typedef struct { 64typedef struct {
65 enum idevice_event_type event; /**< The event type. */ 65 enum idevice_event_type event; /**< The event type. */
66 const char *udid; /**< The device unique id. */ 66 const char *udid; /**< The device unique id. */
@@ -88,7 +88,7 @@ void idevice_set_debug_level(int level);
88 * @param user_data Application-specific data passed as parameter 88 * @param user_data Application-specific data passed as parameter
89 * to the registered callback function. 89 * to the registered callback function.
90 * 90 *
91 * @return IDEVICE_E_SUCCESS on success or an error value when an error occured. 91 * @return IDEVICE_E_SUCCESS on success or an error value when an error occurred.
92 */ 92 */
93idevice_error_t idevice_event_subscribe(idevice_event_cb_t callback, void *user_data); 93idevice_error_t idevice_event_subscribe(idevice_event_cb_t callback, void *user_data);
94 94
@@ -96,7 +96,7 @@ idevice_error_t idevice_event_subscribe(idevice_event_cb_t callback, void *user_
96 * Release the event callback function that has been registered with 96 * Release the event callback function that has been registered with
97 * idevice_event_subscribe(). 97 * idevice_event_subscribe().
98 * 98 *
99 * @return IDEVICE_E_SUCCESS on success or an error value when an error occured. 99 * @return IDEVICE_E_SUCCESS on success or an error value when an error occurred.
100 */ 100 */
101idevice_error_t idevice_event_unsubscribe(void); 101idevice_error_t idevice_event_unsubscribe(void);
102 102
@@ -109,7 +109,7 @@ idevice_error_t idevice_event_unsubscribe(void);
109 * This list is terminated by a NULL pointer. 109 * This list is terminated by a NULL pointer.
110 * @param count Number of devices found. 110 * @param count Number of devices found.
111 * 111 *
112 * @return IDEVICE_E_SUCCESS on success or an error value when an error occured. 112 * @return IDEVICE_E_SUCCESS on success or an error value when an error occurred.
113 */ 113 */
114idevice_error_t idevice_get_device_list(char ***devices, int *count); 114idevice_error_t idevice_get_device_list(char ***devices, int *count);
115 115