projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ed8fb78
)
lib/mpi: fix typo 'the the' in comment
author
Slark Xiao
<slark_xiao@163.com>
Fri, 22 Jul 2022 10:19:22 +0000
(18:19 +0800)
committer
akpm
<akpm@linux-foundation.org>
Sat, 30 Jul 2022 01:12:35 +0000
(18:12 -0700)
Replace 'the the' with 'the' in the comment.
Link:
https://lkml.kernel.org/r/20220722101922.81126-1-slark_xiao@163.com
Signed-off-by: Slark Xiao <slark_xiao@163.com>
Cc: Hongbo Li <herberthbli@tencent.com>
Cc: Herbert Xu <herbert@gondor.apana.org.au>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
lib/mpi/mpiutil.c
patch
|
blob
|
history
diff --git
a/lib/mpi/mpiutil.c
b/lib/mpi/mpiutil.c
index bc81419f400c5576e50b0afca66a9188b3b52d68..aa8c46544af8e00496025f9b487a3212834dcc50 100644
(file)
--- a/
lib/mpi/mpiutil.c
+++ b/
lib/mpi/mpiutil.c
@@
-272,7
+272,7
@@
MPI mpi_set_ui(MPI w, unsigned long u)
if (!w)
w = mpi_alloc(1);
/* FIXME: If U is 0 we have no need to resize and thus possible
- * allocating the
the
limbs.
+ * allocating the limbs.
*/
RESIZE_IF_NEEDED(w, 1);
w->d[0] = u;