From: Jérôme Benoit Date: Wed, 15 Feb 2017 12:26:17 +0000 (+0100) Subject: exo1.c: fix a typo X-Git-Url: https://git.piment-noir.org/?p=TD_C.git;a=commitdiff_plain;h=fdfaa04d75c620f423be04e5142daf662f787780 exo1.c: fix a typo Signed-off-by: Jérôme Benoit --- diff --git a/exo1/exo1.c b/exo1/exo1.c index b4bf35d..3425120 100644 --- a/exo1/exo1.c +++ b/exo1/exo1.c @@ -7,7 +7,7 @@ void promptValue(int* addr) { scanf("%d", addr); } -// The efficience of this swap alternative is debatable .. +// The efficiency of this swap alternative is debatable .. void xorSwap (int *v1, int *v2) { if (v1 != v2) { *v1 ^= *v2;