Fix description of addprefix function (#28)

This commit is contained in:
RichardLCD 2021-09-22 16:43:14 +08:00 committed by GitHub
parent 027101f710
commit 752ea4ee75
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -331,7 +331,7 @@ addprefix
$(addprefix <prefix>,<names...>)
- 名称加前缀函数——addprefix。
- 功能:把前缀 ``<prefix>`` 加到 ``<names>`` 中的每个单词面。
- 功能:把前缀 ``<prefix>`` 加到 ``<names>`` 中的每个单词面。
- 返回:返回加过前缀的文件名序列。
- 示例: ``$(addprefix src/,foo bar)`` 返回值是 ``src/foo src/bar``