fixed a couple of namechanges in comments
authorChristian Fuchs <christian.fuchs@cfuchs.net>
Mon, 2 Sep 2013 13:25:26 +0000 (13:25 +0000)
committerChristian Fuchs <christian.fuchs@cfuchs.net>
Mon, 2 Sep 2013 13:25:26 +0000 (13:25 +0000)
src/scalarproduct/gnunet-service-scalarproduct.c

index d164acfba82d009b69b281df0f9a1d52f8fe3821..80fe35758ea7496fd12a654b74496a91ed02a39c 100644 (file)
@@ -100,27 +100,27 @@ static gcry_mpi_t my_offset;
 
 /**
  * Head of our double linked list for client-requests sent to us. 
- * for all of these elements we calculate a vector product with a remote peer
+ * for all of these elements we calculate a scalar product with a remote peer
  * split between service->service and client->service for simplicity
  */
 static struct ServiceSession * from_client_head;
 /**
  * Tail of our double linked list for client-requests sent to us. 
- * for all of these elements we calculate a vector product with a remote peer
+ * for all of these elements we calculate a scalar product with a remote peer
  * split between service->service and client->service for simplicity
  */
 static struct ServiceSession * from_client_tail;
 
 /**
  * Head of our double linked list for service-requests sent to us. 
- * for all of these elements we help the requesting service in calculating a vector product
+ * for all of these elements we help the requesting service in calculating a scalar product
  * split between service->service and client->service for simplicity
  */
 static struct ServiceSession * from_service_head;
 
 /**
  * Tail of our double linked list for service-requests sent to us. 
- * for all of these elements we help the requesting service in calculating a vector product
+ * for all of these elements we help the requesting service in calculating a scalar product
  * split between service->service and client->service for simplicity
  */
 static struct ServiceSession * from_service_tail;