From 5bfa035ced87c0b9f04dac5f643aedf399087c97 Mon Sep 17 00:00:00 2001 From: Kyle Dodson Date: Fri, 8 Sep 2023 17:14:05 -0700 Subject: [PATCH] Fix spelling in doc comment --- client/proxy.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/proxy.go b/client/proxy.go index ef0bedd5..66f4db8e 100644 --- a/client/proxy.go +++ b/client/proxy.go @@ -160,7 +160,7 @@ func (proxy *Proxy) UpdateToxic(name string, toxicity float32, attrs Attributes) return result, nil } -// RemoveToxic renives the toxic with the given name. +// RemoveToxic removes the toxic with the given name. func (proxy *Proxy) RemoveToxic(name string) error { return proxy.client.delete("/proxies/" + proxy.Name + "/toxics/" + name) }