diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 762cf8a47..d4c32b7f2 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -16,7 +16,7 @@ Please report unacceptable behavior on [https://github.com/aptly-dev/aptly/discu ### List of Repositories * [aptly-dev/aptly](https://github.com/aptly-dev/aptly) - aptly source code, functional tests, man page -* [apty-dev/aptly-dev.github.io](https://github.com/aptly-dev/aptly-dev.github.io) - aptly website (https://www.aptly.info/) +* [aptly-dev/aptly-dev.github.io](https://github.com/aptly-dev/aptly-dev.github.io) - aptly website (https://www.aptly.info/) * [aptly-dev/aptly-fixture-db](https://github.com/aptly-dev/aptly-fixture-db) & [aptly-dev/aptly-fixture-pool](https://github.com/aptly-dev/aptly-fixture-pool) provide fixtures for aptly functional tests diff --git a/api/gpg.go b/api/gpg.go index 596d28ae8..088ab0de4 100644 --- a/api/gpg.go +++ b/api/gpg.go @@ -54,7 +54,7 @@ type gpgDeleteKeyParams struct { // @Summary Add GPG Keys // @Description **Adds GPG keys to aptly keyring** // @Description -// @Description Add GPG public keys for veryfing remote repositories for mirroring. +// @Description Add GPG public keys for verifying remote repositories for mirroring. // @Description // @Description Keys can be added in two ways: // @Description * By providing the ASCII armord key in `GpgKeyArmor` (leave Keyserver and GpgKeyID empty) diff --git a/api/mirror.go b/api/mirror.go index bf8d3badf..743101fc9 100644 --- a/api/mirror.go +++ b/api/mirror.go @@ -497,7 +497,7 @@ func apiMirrorsEdit(c *gin.Context) { type mirrorUpdateParams struct { // Change mirror name to `Name` Name string ` json:"Name" example:"mirror1"` - // Gpg keyring(s) for verifing Release file + // Gpg keyring(s) for verifying Release file Keyrings []string ` json:"Keyrings" example:"trustedkeys.gpg"` // Set "true" to ignore checksum errors IgnoreChecksums bool ` json:"IgnoreChecksums"` diff --git a/api/publish.go b/api/publish.go index 334a27a26..67b260d47 100644 --- a/api/publish.go +++ b/api/publish.go @@ -124,7 +124,7 @@ func apiPublishList(c *gin.Context) { // @Description See also: `aptly publish show` // @Tags Publish // @Produce json -// @Param prefix path string true "publishing prefix, use `:.` instead of `.` because it is ambigious in URLs" +// @Param prefix path string true "publishing prefix, use `:.` instead of `.` because it is ambiguous in URLs" // @Param distribution path string true "distribution name" // @Success 200 {object} deb.PublishedRepo // @Failure 404 {object} Error "Published repository not found" diff --git a/api/repos.go b/api/repos.go index 588beaca1..1d6dfae3a 100644 --- a/api/repos.go +++ b/api/repos.go @@ -102,7 +102,7 @@ type repoCreateParams struct { DefaultDistribution string ` json:"DefaultDistribution" example:"stable"` // Default component when publishing from this local repo DefaultComponent string ` json:"DefaultComponent" example:"main"` - // Snapshot name to create repoitory from (optional) + // Snapshot name to create repository from (optional) FromSnapshot string ` json:"FromSnapshot" example:""` } @@ -180,7 +180,7 @@ type reposEditParams struct { Comment *string ` json:"Comment" example:"example repo"` // Change Default Distribution for publishing DefaultDistribution *string ` json:"DefaultDistribution" example:""` - // Change Devault Component for publishing + // Change Default Component for publishing DefaultComponent *string ` json:"DefaultComponent" example:""` } diff --git a/docs/Files.md b/docs/Files.md index 616a64ac8..4fcba73b6 100644 --- a/docs/Files.md +++ b/docs/Files.md @@ -2,7 +2,7 @@