From bdd6074f3f585d1249e3991a7769d26b05cb172e Mon Sep 17 00:00:00 2001 From: George Shaw Date: Tue, 31 Oct 2017 15:13:01 -0500 Subject: [PATCH] showcasing git open source workflow --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 9341cd2..59f6234 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -17,7 +17,7 @@ Go has [testing baked in the language](https://golang.org/pkg/testing/) and we w ```go // addTwoPositiveIntegers returns the sum of two positive integers. // When the two integers are not positive, it returns the zero-value of an integer and an error. -// BUG(george-e-shaw-iv) This function cannot handle negative integers +// BUG(george-e-shaw-iv) This function cannot handle negative integers, this needs addressed func addTwoPositiveIntegers(one int, two int) (int, error) { var answer int