From b68dcca7e0c978735e6cad31a77db4359f446af3 Mon Sep 17 00:00:00 2001
From: Yu Zhao <2496091142@qq.com>
Date: Thu, 12 Jun 2025 22:38:15 +0800
Subject: [PATCH] docs: fix typo in uploader document (#13502)
---
packages/vant/src/uploader/README.md | 2 +-
packages/vant/src/uploader/README.zh-CN.md | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/packages/vant/src/uploader/README.md b/packages/vant/src/uploader/README.md
index f9d241334..623481012 100644
--- a/packages/vant/src/uploader/README.md
+++ b/packages/vant/src/uploader/README.md
@@ -341,7 +341,7 @@ export default {
| capture | Capture, can be set to `camera` | _string_ | - |
| after-read | Hook after reading the file | _Function_ | - |
| before-read | Hook before reading the file, return false to stop reading the file, can return Promise | _Function_ | - |
-| before-delete | Hook before delete the file, return false to stop reading the file, can return Promise | _Function_ | - |
+| before-delete | Hook before delete the file, return false to stop deleting the file, can return Promise | _Function_ | - |
| max-size | Max size of file | _number \| string \| (file: File) => boolean_ | `Infinity` |
| max-count | Max count of image | _number \| string_ | `Infinity` |
| result-type | Type of file read result, can be set to `file` `text` | _string_ | `dataUrl` |
diff --git a/packages/vant/src/uploader/README.zh-CN.md b/packages/vant/src/uploader/README.zh-CN.md
index 89593eb0e..72822b445 100644
--- a/packages/vant/src/uploader/README.zh-CN.md
+++ b/packages/vant/src/uploader/README.zh-CN.md
@@ -360,7 +360,7 @@ export default {
| capture | 图片选取模式,可选值为 `camera` (直接调起摄像头) | _string_ | - |
| after-read | 文件读取完成后的回调函数 | _Function_ | - |
| before-read | 文件读取前的回调函数,返回 `false` 可终止文件读取,
支持返回 `Promise` | _Function_ | - |
-| before-delete | 文件删除前的回调函数,返回 `false` 可终止文件读取,
支持返回 `Promise` | _Function_ | - |
+| before-delete | 文件删除前的回调函数,返回 `false` 可终止文件删除,支持返回 `Promise` | _Function_ | - |
| max-size | 文件大小限制,单位为 `byte` | _number \| string \| (file: File) => boolean_ | `Infinity` |
| max-count | 文件上传数量限制 | _number \| string_ | `Infinity` |
| result-type | 文件读取结果类型,可选值为 `file` `text` | _string_ | `dataUrl` |