Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

series: update to use %q #535

Merged
merged 1 commit into from
Feb 22, 2017
Merged

Conversation

robphoenix
Copy link
Contributor

see #414, updated to make the use of strings more apparent, so [ ]
will now be ["", "", "", "", ""].

All uses of strings have also been changed to use %q rather than %s to be
consistent.
ie. first_test.go:20: First(1, "01234") = "". Want "0".
rather than
ie. first_test.go:20: First(1, 01234) = . Want 0.
or
ie. first_test.go:20: First(1, 01234) = "". Want "0".

see exercism#414, updated to make the use of strings more apparent, so [    ]
will now be ["", "", "", "", ""].

All uses of strings have also been changed to use %q rather than %s to be
consistent.
ie. `first_test.go:20: First(1, "01234") = "".  Want "0".`
rather than
ie. `first_test.go:20: First(1, 01234) = .  Want 0.`
or
ie. `first_test.go:20: First(1, 01234) = "".  Want "0".`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants