diff options
| author | 2011-03-11 22:56:54 +0100 | |
|---|---|---|
| committer | 2011-03-12 03:18:22 +0100 | |
| commit | 0b0ce44c138e57d7e638bd8d400ec5260c92d9c7 (patch) | |
| tree | 78a39572bdd0a2e8cf1b91c714deb6244f271e29 /src/mobilesync.c | |
| parent | 60ac4098aec85f7292465b707c492de51e2796e1 (diff) | |
| download | libimobiledevice-0b0ce44c138e57d7e638bd8d400ec5260c92d9c7.tar.gz libimobiledevice-0b0ce44c138e57d7e638bd8d400ec5260c92d9c7.tar.bz2 | |
Fix typos in mobilesync.c API doc
Diffstat (limited to 'src/mobilesync.c')
| -rw-r--r-- | src/mobilesync.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/mobilesync.c b/src/mobilesync.c index a2a4b60..4a54851 100644 --- a/src/mobilesync.c +++ b/src/mobilesync.c | |||
| @@ -42,7 +42,7 @@ | |||
| 42 | * Convert an device_link_service_error_t value to an mobilesync_error_t value. | 42 | * Convert an device_link_service_error_t value to an mobilesync_error_t value. |
| 43 | * Used internally to get correct error codes when using device_link_service stuff. | 43 | * Used internally to get correct error codes when using device_link_service stuff. |
| 44 | * | 44 | * |
| 45 | * @param err An device_link_service_error_t error code | 45 | * @param err A device_link_service_error_t error code |
| 46 | * | 46 | * |
| 47 | * @return A matching mobilesync_error_t error code, | 47 | * @return A matching mobilesync_error_t error code, |
| 48 | * MOBILESYNC_E_UNKNOWN_ERROR otherwise. | 48 | * MOBILESYNC_E_UNKNOWN_ERROR otherwise. |
| @@ -440,7 +440,7 @@ mobilesync_error_t mobilesync_get_changes_from_device(mobilesync_client_t client | |||
| 440 | * | 440 | * |
| 441 | * @param client The mobilesync client | 441 | * @param client The mobilesync client |
| 442 | * @param entities A pointer to store the changed entity records as a PLIST_DICT | 442 | * @param entities A pointer to store the changed entity records as a PLIST_DICT |
| 443 | * @param is_last_record A pointer to store a flag indiciating if this submission is the last one | 443 | * @param is_last_record A pointer to store a flag indicating if this submission is the last one |
| 444 | * @param actions A pointer to additional flags the device is sending or NULL to ignore | 444 | * @param actions A pointer to additional flags the device is sending or NULL to ignore |
| 445 | * | 445 | * |
| 446 | * @retval MOBILESYNC_E_SUCCESS on success | 446 | * @retval MOBILESYNC_E_SUCCESS on success |
| @@ -638,11 +638,11 @@ mobilesync_error_t mobilesync_ready_to_send_changes_from_computer(mobilesync_cli | |||
| 638 | } | 638 | } |
| 639 | 639 | ||
| 640 | /** | 640 | /** |
| 641 | * Sends changed entitites of the currently set data class to the device | 641 | * Sends changed entities of the currently set data class to the device |
| 642 | * | 642 | * |
| 643 | * @param client The mobilesync client | 643 | * @param client The mobilesync client |
| 644 | * @param entities The changed entity records as a PLIST_DICT | 644 | * @param entities The changed entity records as a PLIST_DICT |
| 645 | * @param is_last_record A flag indiciating if this submission is the last one | 645 | * @param is_last_record A flag indicating if this submission is the last one |
| 646 | * @param actions Additional actions for the device created with mobilesync_actions_new() | 646 | * @param actions Additional actions for the device created with mobilesync_actions_new() |
| 647 | * or NULL if no actions should be passed | 647 | * or NULL if no actions should be passed |
| 648 | * | 648 | * |
| @@ -764,7 +764,7 @@ mobilesync_error_t mobilesync_remap_identifiers(mobilesync_client_t client, plis | |||
| 764 | } | 764 | } |
| 765 | 765 | ||
| 766 | /** | 766 | /** |
| 767 | * Cancells a running synchronization session with a device at any time. | 767 | * Cancels a running synchronization session with a device at any time. |
| 768 | * | 768 | * |
| 769 | * @param client The mobilesync client | 769 | * @param client The mobilesync client |
| 770 | * @param reason The reason to supply to the device for cancelling | 770 | * @param reason The reason to supply to the device for cancelling |
| @@ -827,7 +827,7 @@ mobilesync_anchors_t mobilesync_anchors_new(const char *device_anchor, const cha | |||
| 827 | /** | 827 | /** |
| 828 | * Free memory used by anchors. | 828 | * Free memory used by anchors. |
| 829 | * | 829 | * |
| 830 | * @param anchors The anchors free. | 830 | * @param anchors The anchors to free. |
| 831 | */ | 831 | */ |
| 832 | void mobilesync_anchors_free(mobilesync_anchors_t anchors) | 832 | void mobilesync_anchors_free(mobilesync_anchors_t anchors) |
| 833 | { | 833 | { |
| @@ -862,7 +862,7 @@ plist_t mobilesync_actions_new() | |||
| 862 | * @note The known keys so far are "SyncDeviceLinkEntityNamesKey" which expects | 862 | * @note The known keys so far are "SyncDeviceLinkEntityNamesKey" which expects |
| 863 | * an array of entity names, followed by a count paramter as well as | 863 | * an array of entity names, followed by a count paramter as well as |
| 864 | * "SyncDeviceLinkAllRecordsOfPulledEntityTypeSentKey" which expects an | 864 | * "SyncDeviceLinkAllRecordsOfPulledEntityTypeSentKey" which expects an |
| 865 | * integer to use as a boolean value indiciating that the device should | 865 | * integer to use as a boolean value indicating that the device should |
| 866 | * link submitted changes and report remapped identifiers. | 866 | * link submitted changes and report remapped identifiers. |
| 867 | */ | 867 | */ |
| 868 | void mobilesync_actions_add(plist_t actions, ...) | 868 | void mobilesync_actions_add(plist_t actions, ...) |
