The patch titled Subject: lib/mpi: fix typo 'the the' in comment has been added to the -mm mm-nonmm-unstable branch. Its filename is lib-mpi-fix-typo-the-the-in-comment.patch This patch will shortly appear at https://git.kernel.org/pub/scm/linux/kernel/git/akpm/25-new.git/tree/patches/lib-mpi-fix-typo-the-the-in-comment.patch This patch will later appear in the mm-nonmm-unstable branch at git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/process/submit-checklist.rst when testing your code *** The -mm tree is included into linux-next via the mm-everything branch at git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm and is updated there every 2-3 working days ------------------------------------------------------ From: Slark Xiao <slark_xiao@xxxxxxx> Subject: lib/mpi: fix typo 'the the' in comment Date: Fri, 22 Jul 2022 18:19:22 +0800 Replace 'the the' with 'the' in the comment. Link: https://lkml.kernel.org/r/20220722101922.81126-1-slark_xiao@xxxxxxx Signed-off-by: Slark Xiao <slark_xiao@xxxxxxx> Cc: Hongbo Li <herberthbli@xxxxxxxxxxx> Cc: Herbert Xu <herbert@xxxxxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- lib/mpi/mpiutil.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/lib/mpi/mpiutil.c~lib-mpi-fix-typo-the-the-in-comment +++ a/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; _ Patches currently in -mm which might be from slark_xiao@xxxxxxx are lib-mpi-fix-typo-the-the-in-comment.patch