tools: Correct misspelled directionary -> dictionary in function name
diff --git a/tools/idevicedebug.c b/tools/idevicedebug.c
index 74ce069..4169920 100644
--- a/tools/idevicedebug.c
+++ b/tools/idevicedebug.c
@@ -61,7 +61,7 @@
 	quit_flag++;
 }
 
-static instproxy_error_t instproxy_client_get_object_by_key_from_info_directionary_for_bundle_identifier(instproxy_client_t client, const char* appid, const char* key, plist_t* node)
+static instproxy_error_t instproxy_client_get_object_by_key_from_info_dictionary_for_bundle_identifier(instproxy_client_t client, const char* appid, const char* key, plist_t* node)
 {
 	if (!client || !appid || !key)
 		return INSTPROXY_E_INVALID_ARG;
@@ -335,7 +335,7 @@
 				goto cleanup;
 			}
 			plist_t container = NULL;
-			instproxy_client_get_object_by_key_from_info_directionary_for_bundle_identifier(instproxy_client, bundle_identifier, "Container", &container);
+			instproxy_client_get_object_by_key_from_info_dictionary_for_bundle_identifier(instproxy_client, bundle_identifier, "Container", &container);
 			instproxy_client_get_path_for_bundle_identifier(instproxy_client, bundle_identifier, &path);
 			instproxy_client_free(instproxy_client);
 			instproxy_client = NULL;