diff options
| author | Slark Xiao <[email protected]> | 2022-07-22 10:19:22 +0000 |
|---|---|---|
| committer | akpm <[email protected]> | 2022-07-30 01:12:35 +0000 |
| commit | cf069c3b47fed4e475a13e3ec89451fbdb88869a (patch) | |
| tree | 0eb1057cfdd66b9708413c9ccb1e8642477ff69a /lib/mpi/mpiutil.c | |
| parent | proc: add some (hopefully) insightful comments (diff) | |
| download | kernel-cf069c3b47fed4e475a13e3ec89451fbdb88869a.tar.gz kernel-cf069c3b47fed4e475a13e3ec89451fbdb88869a.zip | |
lib/mpi: fix typo 'the the' in comment
Replace 'the the' with 'the' in the comment.
Link: https://lkml.kernel.org/r/[email protected]
Signed-off-by: Slark Xiao <[email protected]>
Cc: Hongbo Li <[email protected]>
Cc: Herbert Xu <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Diffstat (limited to 'lib/mpi/mpiutil.c')
| -rw-r--r-- | lib/mpi/mpiutil.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/mpi/mpiutil.c b/lib/mpi/mpiutil.c index bc81419f400c..aa8c46544af8 100644 --- 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; |
