From a37032679761aa8008259e65b75c7902036a918c Mon Sep 17 00:00:00 2001 From: Christian Fuchs Date: Mon, 2 Sep 2013 13:25:26 +0000 Subject: [PATCH] fixed a couple of namechanges in comments --- src/scalarproduct/gnunet-service-scalarproduct.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/scalarproduct/gnunet-service-scalarproduct.c b/src/scalarproduct/gnunet-service-scalarproduct.c index d164acfba..80fe35758 100644 --- a/src/scalarproduct/gnunet-service-scalarproduct.c +++ b/src/scalarproduct/gnunet-service-scalarproduct.c @@ -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; -- 2.25.1