From 111efcb94903957094bb849a2d031b0e808ae49c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dag-Erling=20Sm=C3=B8rgrav?= Date: Thu, 6 Apr 2017 17:42:18 +0200 Subject: [PATCH] Correct function descriptions. --- lib/mpi/cryb_mpi_lshift.c | 2 +- lib/mpi/cryb_mpi_rshift.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/mpi/cryb_mpi_lshift.c b/lib/mpi/cryb_mpi_lshift.c index 99ea56a..8cce513 100644 --- a/lib/mpi/cryb_mpi_lshift.c +++ b/lib/mpi/cryb_mpi_lshift.c @@ -37,7 +37,7 @@ #include "cryb_mpi_impl.h" /* - * Left-shift X by c bytes + * Left-shift X in place by c bits. */ int mpi_lshift(cryb_mpi *X, unsigned int c) diff --git a/lib/mpi/cryb_mpi_rshift.c b/lib/mpi/cryb_mpi_rshift.c index 8e01be6..10ec901 100644 --- a/lib/mpi/cryb_mpi_rshift.c +++ b/lib/mpi/cryb_mpi_rshift.c @@ -37,7 +37,7 @@ #include "cryb_mpi_impl.h" /* - * Right-shift X by c bytes + * Right-shift X in place by c bits. */ int mpi_rshift(cryb_mpi *X, unsigned int c)