Skip to content

Commit d56a991

Browse files
committed
1、【更新】文档中几处拼写错误。
Signed-off-by: armink <armink.ztl@gmail.com>
1 parent a7288df commit d56a991

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docs/zh/api/flash.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# EasyLogger Flash插件 API 说明
1+
# EasyLogger Flash 插件 API 说明
22

33
---
44

@@ -20,10 +20,10 @@ ElogErrCode elog_flash_init(void)
2020

2121
### 1.2 输出Flash中指定位置存储的日志
2222

23-
日志的输出方式取决用户的移植接口`elog_flash_port_output`的实现,具体参考Flash插件移植说明([`\docs\zh\port\flash.md`](https://github.com/armink/EasyLogger/blob/master/docs/zh/port/flash.md))。首页Demo中是输出到控制台的方式。
23+
日志的输出方式取决用户的移植接口`elog_flash_port_putput`的实现,具体参考Flash插件移植说明([`\docs\zh\port\flash.md`](https://github.com/armink/EasyLogger/blob/master/docs/zh/port/flash.md))。首页Demo中是输出到控制台的方式。
2424

2525
```
26-
void elog_flash_outout(size_t pos, size_t size)
26+
void elog_flash_output(size_t pos, size_t size)
2727
```
2828

2929
|参数 |描述|
@@ -34,13 +34,13 @@ void elog_flash_outout(size_t pos, size_t size)
3434
### 1.3 输出Flash中存储的所有日志
3535

3636
```
37-
void elog_flash_outout_all(void)
37+
void elog_flash_output_all(void)
3838
```
3939

4040
### 1.4 输出Flash中最近存储的日志
4141

4242
```
43-
void elog_flash_outout_recent(size_t size)
43+
void elog_flash_output_recent(size_t size)
4444
```
4545

4646
|参数 |描述|

0 commit comments

Comments
 (0)