distro: rename ListArchs to ListArches

In PR#395 we discussed the spelling of archs vs. arches and we agreed to
use arches. This patch only renames the public method `ListArchs`in the
`Distro` interface.
This commit is contained in:
Martin Sehnoutka 2020-03-30 09:00:51 +02:00 committed by msehnout
parent 57134548a1
commit 92145822d9
13 changed files with 13 additions and 13 deletions

View file

@ -16,7 +16,7 @@ type testImageType struct{}
const name = "test-distro"
const modulePlatformID = "platform:test"
func (d *TestDistro) ListArchs() []string {
func (d *TestDistro) ListArches() []string {
return []string{"test_arch"}
}