From e794b9370d4969374b205de6d84b7894d35c2812 Mon Sep 17 00:00:00 2001 From: Dustin Kirkland Date: Mon, 26 Jun 2023 17:47:47 -0500 Subject: [PATCH] * petname.go: - fix typo --- debian/changelog | 6 +++++- petname.go | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index e8b29aa7..46eab8f5 100644 --- a/debian/changelog +++ b/debian/changelog @@ -14,7 +14,11 @@ golang-petname (2.11) unreleased; urgency=medium * debian/control, debian/copyright: - updated to relocate source from Launchpad to github - -- Dustin Kirkland Mon, 26 Jun 2023 17:04:15 -0500 + [ Edward Betts ] + * petname.go: + - fix typo + + -- Dustin Kirkland Mon, 26 Jun 2023 17:47:24 -0500 golang-petname (2.10-0ubuntu1) eoan; urgency=medium diff --git a/petname.go b/petname.go index 4a8e0b8c..d70fd693 100644 --- a/petname.go +++ b/petname.go @@ -66,7 +66,7 @@ func Name() string { // If a single word is requested, simply a Name() is returned. // If two words are requested, a Adjective() and a Name() are returned. // If three or more words are requested, a variable number of Adverb() and a Adjective and a Name() is returned. -// The separator can be any charater, string, or the empty string. +// The separator can be any character, string, or the empty string. func Generate(words int, separator string) string { if words == 1 { return Name()