summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoss Burton <ross@openedhand.com>2008-11-14 12:46:51 +0000
committerRoss Burton <ross@openedhand.com>2008-11-14 12:46:51 +0000
commitc5d21ccde6c97591f1e78bb419e12855f89461ec (patch)
treea26241d33a30bca5b48a96a99bd07de4546a8407
parent99f1d00150b5d95760bdbfd2a3dbb1df92114ef0 (diff)
downloadgupnp-c5d21ccde6c97591f1e78bb419e12855f89461ec.tar.gz
2008-11-14 Ross Burton <ross@linux.intel.com>
* libgupnp/gupnp-service-proxy.c: Fix typos (thanks Sven Neumann) git-svn-id: https://svn.o-hand.com/repos/gupnp/trunk/gupnp@1358 d8cb91d7-bff9-0310-92b9-80b65e4482b2
-rw-r--r--ChangeLog5
-rw-r--r--libgupnp/gupnp-service-proxy.c18
2 files changed, 14 insertions, 9 deletions
diff --git a/ChangeLog b/ChangeLog
index 3d1ffff..4eb0008 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2008-11-14 Ross Burton <ross@linux.intel.com>
+
+ * libgupnp/gupnp-service-proxy.c:
+ Fix typos (thanks Sven Neumann)
+
2008-11-12 Jussi Kukkonen <jku@linux.intel.com>
* doc/glossary.xml:
diff --git a/libgupnp/gupnp-service-proxy.c b/libgupnp/gupnp-service-proxy.c
index f9355ed..b1b25ae 100644
--- a/libgupnp/gupnp-service-proxy.c
+++ b/libgupnp/gupnp-service-proxy.c
@@ -340,8 +340,8 @@ gupnp_service_proxy_class_init (GUPnPServiceProxyClass *klass)
* @proxy: A #GUPnPServiceProxy
* @action: An action
* @error: The location where to store any error, or %NULL
- * @Varargs: tuples of in parameter name, in paramater type, and in parameter
- * value, followed by %NULL, and then tuples of out paramater name,
+ * @Varargs: tuples of in parameter name, in parameter type, and in parameter
+ * value, followed by %NULL, and then tuples of out parameter name,
* out parameter type, and out parameter value location, terminated with %NULL
*
* Sends action @action with parameters @Varargs to the service exposed by
@@ -382,8 +382,8 @@ stop_main_loop (GUPnPServiceProxy *proxy,
* @proxy: A #GUPnPServiceProxy
* @action: An action
* @error: The location where to store any error, or %NULL
- * @var_args: va_list of tuples of in parameter name, in paramater type, and in
- * parameter value, followed by %NULL, and then tuples of out paramater name,
+ * @var_args: va_list of tuples of in parameter name, in parameter type, and in
+ * parameter value, followed by %NULL, and then tuples of out parameter name,
* out parameter type, and out parameter value location
*
* See gupnp_service_proxy_send_action(); this version takes a va_list for
@@ -496,7 +496,7 @@ gupnp_service_proxy_send_action_hash (GUPnPServiceProxy *proxy,
* @callback: The callback to call when sending the action has succeeded
* or failed
* @user_data: User data for @callback
- * @Varargs: tuples of in parameter name, in paramater type, and in parameter
+ * @Varargs: tuples of in parameter name, in parameter type, and in parameter
* value, terminated with %NULL
*
* Sends action @action with parameters @Varargs to the service exposed by
@@ -718,7 +718,7 @@ write_in_parameter (const char *arg_name,
* @callback: The callback to call when sending the action has succeeded
* or failed
* @user_data: User data for @callback
- * @var_args: A va_list of tuples of in parameter name, in paramater type, and
+ * @var_args: A va_list of tuples of in parameter name, in parameter type, and
* in parameter value
*
* See gupnp_service_proxy_begin_action(); this version takes a va_list for
@@ -844,7 +844,7 @@ gupnp_service_proxy_begin_action_hash
* @proxy: A #GUPnPServiceProxy
* @action: A #GUPnPServiceProxyAction handle
* @error: The location where to store any error, or %NULL
- * @Varargs: tuples of out parameter name, out paramater type, and out parameter
+ * @Varargs: tuples of out parameter name, out parameter type, and out parameter
* value location, terminated with %NULL. The out parameter values should be
* freed after use
*
@@ -1011,7 +1011,7 @@ read_out_parameter (const char *arg_name,
{
xmlNode *param;
- /* Try to find a matching paramater in the response*/
+ /* Try to find a matching parameter in the response*/
param = xml_util_get_element (params,
arg_name,
NULL);
@@ -1030,7 +1030,7 @@ read_out_parameter (const char *arg_name,
* @proxy: A #GUPnPServiceProxy
* @action: A #GUPnPServiceProxyAction handle
* @error: The location where to store any error, or %NULL
- * @var_args: A va_list of tuples of out parameter name, out paramater type,
+ * @var_args: A va_list of tuples of out parameter name, out parameter type,
* and out parameter value location. The out parameter values should be
* freed after use
*