diff --git a/DEVELOPMENT.md b/DEVELOPMENT.md index 0aa1729c..336b5107 100644 --- a/DEVELOPMENT.md +++ b/DEVELOPMENT.md @@ -47,7 +47,7 @@ on to the next step. If you want to stop everything at any time, run `make down`. -Note that `make dev` only runs the minimum amount of dependencies needed for things to work. If you'd like to run all the possible dependencies run `make alldeps` or directly the services available in the `docker-compose.yml` file. Keep in mind, though, that `make alldeps` does not start up Athens or Oympus, but **only** their dependencies. +Note that `make dev` only runs the minimum amount of dependencies needed for things to work. If you'd like to run all the possible dependencies run `make alldeps` or directly the services available in the `docker-compose.yml` file. Keep in mind, though, that `make alldeps` does not start up Athens, but **only** its dependencies. # Run unit tests diff --git a/pkg/download/upstream_lister.go b/pkg/download/upstream_lister.go index b09dd940..571338ac 100644 --- a/pkg/download/upstream_lister.go +++ b/pkg/download/upstream_lister.go @@ -16,7 +16,7 @@ import ( "github.com/spf13/afero" ) -// UpstreamLister retrieves a list o available module versions from upstream +// UpstreamLister retrieves a list of available module versions from upstream // i.e. VCS, and a Storage backend. type UpstreamLister interface { List(ctx context.Context, mod string) (*storage.RevInfo, []string, error)