docs(function): fix typo

This commit is contained in:
ruanyf
2021-10-04 18:17:13 +08:00
parent 09052f6adb
commit a4cad4600f

View File

@@ -216,7 +216,7 @@ if (print == &print) // true
```c
void (*print_ptr)(int) = &print;
// 或
void (*print_ptr) = print;
void (*print_ptr)(int) = print;
if (print_ptr == print) // true
```