From 8b4aa626ce68ecc2bca78b1edf8fd74580b7bfe7 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Wed, 4 Dec 2019 09:46:40 +0100 Subject: prog: fix typo in comment Linter says: prog/prio_test.go:68:15: `probablistic` is a misspelling of `probabilistic` (misspell) // for this probablistic test. ^ --- prog/prio_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'prog') diff --git a/prog/prio_test.go b/prog/prio_test.go index 00466f8ba..2fd059910 100644 --- a/prog/prio_test.go +++ b/prog/prio_test.go @@ -65,7 +65,7 @@ func TestStaticPriorities(t *testing.T) { target, rs, iters := initTest(t) if iters < 100 { // Both -short and -race reduce iters to 10 which is not enough - // for this probablistic test. + // for this probabilistic test. iters = 100 } // The first call is the one that creates a resource and the rest are calls that can use that resource. -- cgit mrf-deployment