diff --git a/Reports/2024/#285-2024.04.15.md b/Reports/2024/#285-2024.04.15.md index 91a8d558a..01fde31f4 100644 --- a/Reports/2024/#285-2024.04.15.md +++ b/Reports/2024/#285-2024.04.15.md @@ -45,7 +45,7 @@ ### 🐕 COW Macro Package -[@Kyle-Ye](https://github.com/Kyle-Ye) Swift 的大量标准库内的 struct 出于性能等因素考虑都进行了 Copy On Write(后简称 COW)优化(如 String、Array、Set、Dictionary),但是对于业务自定义的 struct 默认没有此类优化。 +[@Kyle-Ye](https://github.com/Kyle-Ye):Swift 的大量标准库内的 struct 出于性能等因素考虑都进行了 Copy On Write(后简称 COW)优化(如 String、Array、Set、Dictionary),但是对于业务自定义的 struct 默认没有此类优化。 因此如果业务定义了一个巨大的 struct,在此 struct 作为参数传递过程中,容易产生较大的包大小并且有一定性能影响。