From fdfaa04d75c620f423be04e5142daf662f787780 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Wed, 15 Feb 2017 13:26:17 +0100 Subject: [PATCH] exo1.c: fix a typo MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérôme Benoit --- exo1/exo1.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.34.1