From aa8b79333a915cd4eac11f3814e5281038bd2fd5 Mon Sep 17 00:00:00 2001 From: chaoyuepan Date: Mon, 29 Apr 2024 11:32:44 +0800 Subject: [PATCH] close #172 fix the wrong link --- src/010.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/010.md b/src/010.md index eda7274..1e5176b 100644 --- a/src/010.md +++ b/src/010.md @@ -1,6 +1,6 @@ # Tip #10 避免裸露参数 -> 原始链接:[Golang #1: Measure the execution time of a function in just one line of code.](https://twitter.com/func25/status/1725431804667244715) +> 原始链接:[Golang Tip #10: Avoid Naked Parameters](https://twitter.com/func25/status/1730079241243627712) > 这是一个简单易行的技巧,可以提高函数的可读性,特别是在你的集成开发环境(IDE)不支持内联提示的情况下。我们可以通过使用结构体来实现这一目标,需要注意的是,结构体中的字段将是可选的而非必填项。你对此有何看法?