Merge pull request #46 from george-e-shaw-iv/master

Showcasing git workflow in open source projects
This commit is contained in:
George Shaw 2017-10-31 15:18:54 -05:00 committed by GitHub
commit 5b855b3587
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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