Skip to content

Commit

Permalink
docs: :bugs: fix typos
Browse files Browse the repository at this point in the history
Fix missing argument for `sprint` function series in README
  • Loading branch information
Timothy-Liuxf authored Nov 2, 2023
1 parent b9d5849 commit e6f29c7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -282,10 +282,10 @@ wprintln(a); // 不会真的有人用宽字符版本吧,不会吧不会吧
```c++
u8 a = 97_ | 98_ | 99_;
sprint(); // 输出 abc
sprintln();
swprint();
swprintln();
sprint(a); // 输出 abc
sprintln(a);
swprint(a);
swprintln(a);
```
## 高性能交互方式——数组内建支持
Expand Down

0 comments on commit e6f29c7

Please sign in to comment.