From ef1f967ec0ab25728deaa309fbba9ac1e728a4f5 Mon Sep 17 00:00:00 2001 From: Brad Fitzpatrick Date: Tue, 3 Mar 2020 08:05:11 -0800 Subject: [PATCH] ipn: remove an unnecessary named parameter in doc --- ipn/backend.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ipn/backend.go b/ipn/backend.go index 6d45d6e71..eee2b1b87 100644 --- a/ipn/backend.go +++ b/ipn/backend.go @@ -119,7 +119,7 @@ type Backend interface { // SetPrefs installs a new set of user preferences, including // WantRunning. This may cause the wireguard engine to // reconfigure or stop. - SetPrefs(new *Prefs) + SetPrefs(*Prefs) // RequestEngineStatus polls for an update from the wireguard // engine. Only needed if you want to display byte // counts. Connection events are emitted automatically without