diff mbox series

block: Fix comment typo

Message ID 20220811121303.21834-1-wangborong@cdjrlc.com (mailing list archive)
State New, archived
Headers show
Series block: Fix comment typo | expand

Commit Message

Jason Wang Aug. 11, 2022, 12:13 p.m. UTC
The double `can' is duplicated in the comment, remove one.

Signed-off-by: Jason Wang <wangborong@cdjrlc.com>
---
 block/bio.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/block/bio.c b/block/bio.c
index 3d3a2678fea2..e2a7f0db7f29 100644
--- a/block/bio.c
+++ b/block/bio.c
@@ -567,7 +567,7 @@  EXPORT_SYMBOL(bio_alloc_bioset);
  * be reused by calling bio_uninit() before calling bio_init() again.
  *
  * Note that unlike bio_alloc() or bio_alloc_bioset() allocations from this
- * function are not backed by a mempool can can fail.  Do not use this function
+ * function are not backed by a mempool can fail.  Do not use this function
  * for allocations in the file system I/O path.
  *
  * Returns: Pointer to new bio on success, NULL on failure.