Index: geoclue-0.12.99/docs/reference/html/simple-example.html
===================================================================
--- geoclue-0.12.99.orig/docs/reference/html/simple-example.html	2012-07-31 19:00:04.000000000 +0200
+++ geoclue-0.12.99/docs/reference/html/simple-example.html	2012-08-01 12:36:55.309583929 +0200
@@ -42,12 +42,12 @@
 	
 	g_type_init ();
 	
-	/ * Create the position object * /
+	/* Create the position object */
 	pos = geoclue_position_new ("org.freedesktop.Geoclue.Providers.Hostip",
 	                            "/org/freedesktop/Geoclue/Providers/Hostip");
 	
-	/ * call get_position. Note that unneeded output variables (here 
-	    timestamp, altitude and accuracy) can be left NULL * /
+	/* call get_position. Note that unneeded output variables (here 
+	    timestamp, altitude and accuracy) can be left NULL */
 	fields = geoclue_position_get_position (pos, NULL,
 	                                        &amp;lat, &amp;lon, NULL,
 	                                        NULL, &amp;error);
@@ -81,7 +81,7 @@
 <pre class="programlisting">
 #include &lt;geoclue/geoclue-position.h&gt;
 
-/ * device name or bluetooth address * /
+/* device name or bluetooth address */
 #define GPS_DEVICE_NAME "00:02:76:C5:81:BF" 
 
 static void
@@ -112,11 +112,11 @@
 	
 	g_type_init ();
 	
-	/ * Create the position object * /
+	/* Create the position object */
 	pos = geoclue_position_new ("org.freedesktop.Geoclue.Providers.Gypsy",
 	                            "/org/freedesktop/Geoclue/Providers/Gypsy");
 	
-	/ * Set GPS device name option for Gypsy * /
+	/* Set GPS device name option for Gypsy */
 	options = g_hash_table_new (g_str_hash, g_str_equal);
 	g_hash_table_insert (options, "org.freedesktop.Geoclue.GPSDevice", GPS_DEVICE_NAME);
 	if (!geoclue_provider_set_options (GEOCLUE_PROVIDER (pos), options, &amp;error)) {
@@ -128,7 +128,7 @@
 	}
 	g_hash_table_destroy (options);
 	
-	/ * connect to signal * /
+	/* connect to signal */
 	g_signal_connect (G_OBJECT (pos), "position-changed",
 			  G_CALLBACK (position_changed), NULL);
 	
Index: geoclue-0.12.99/docs/reference/html/simple-master-example.html
===================================================================
--- geoclue-0.12.99.orig/docs/reference/html/simple-master-example.html	2012-07-31 19:00:04.000000000 +0200
+++ geoclue-0.12.99/docs/reference/html/simple-master-example.html	2012-08-01 12:36:55.309583929 +0200
@@ -62,7 +62,7 @@
 	
 	g_type_init ();
 	
-	/ * create a MasterClient using Master * /
+	/* create a MasterClient using Master */
 	master = geoclue_master_get_default ();
 	client = geoclue_master_create_client (master, NULL, &amp;error);
 	g_object_unref (master);
@@ -73,8 +73,8 @@
 		return 1;
 	}
 	
-	/ * Set our requirements: We want at least city level accuracy, require signals, 
-	    and allow the use of network (but not e.g. GPS) * /
+	/* Set our requirements: We want at least city level accuracy, require signals, 
+	    and allow the use of network (but not e.g. GPS) */
 	if (!geoclue_master_client_set_requirements (client,
 	                                             GEOCLUE_ACCURACY_LEVEL_LOCALITY,
 	                                             0, TRUE,
@@ -87,7 +87,7 @@
 		
 	}
 	
-	/ * Get a Position object * /
+	/* Get a Position object */
 	pos = geoclue_master_client_create_position (client, NULL);
 	if (!pos) {
 		g_printerr ("Failed to get a position object");
@@ -95,8 +95,8 @@
 		return 1;
 	}
 	
-	/ * call get_position. We do not know which provider actually provides 
-	    the answer (although we could find out using MasterClient API) * /
+	/* call get_position. We do not know which provider actually provides 
+	    the answer (although we could find out using MasterClient API) */
 	fields = geoclue_position_get_position (pos, NULL,
 	                                        &amp;lat, &amp;lon, NULL,
 	                                        NULL, &amp;error);
Index: geoclue-0.12.99/docs/reference/implementing-providers.xml
===================================================================
--- geoclue-0.12.99.orig/docs/reference/implementing-providers.xml	2012-07-31 18:47:05.000000000 +0200
+++ geoclue-0.12.99/docs/reference/implementing-providers.xml	2012-08-01 12:36:55.309583929 +0200
@@ -341,7 +341,7 @@
 {
 	static GeoclueAccuracy *accuracy = geoclue_accuracy_new (GEOCLUE_ACCURACY_LEVEL_NONE, 0, 0);
 	
-	/ * make up some coordinates * /
+	/* make up some coordinates */
 	static double lat = 60.0;
 	static double lon = 25.0;
 	
