From 7725d5aa03d367d48de17e8c05819eb5179146a0 Mon Sep 17 00:00:00 2001 From: Owen Jacobson Date: Tue, 27 Feb 2018 23:51:08 -0500 Subject: Fix argument typo (thanks, Christophe Junke!) --- wiki/dev/go.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'wiki/dev/go.md') diff --git a/wiki/dev/go.md b/wiki/dev/go.md index 33fce8b..6f04066 100644 --- a/wiki/dev/go.md +++ b/wiki/dev/go.md @@ -71,7 +71,7 @@ It is not possible, in Go, to compose fallible operations in any way less verbos In other languages, this can variously be expressed as a = fallibleOperationA() - b = fallibleOperationB(b) + b = fallibleOperationB(a) return b in languages with exceptions, or as -- cgit v1.2.3