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

Remove repetitive words #365

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions system/db/content.go
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,7 @@ func Content(target string) ([]byte, error) {
return val.Bytes(), nil
}

// ContentMulti returns a set of content based on the the targets / identifiers
// ContentMulti returns a set of content based on the targets / identifiers
// provided in Ponzu target string format: Type:ID
// NOTE: All targets should be of the same type
func ContentMulti(targets []string) ([][]byte, error) {
Expand All @@ -391,7 +391,7 @@ func ContentMulti(targets []string) ([][]byte, error) {

// ContentBySlug does a lookup in the content index to find the type and id of
// the requested content. Subsequently, issues the lookup in the type bucket and
// returns the the type and data at that ID or nil if nothing exists.
// returns the type and data at that ID or nil if nothing exists.
func ContentBySlug(slug string) (string, []byte, error) {
val := &bytes.Buffer{}
var t, id string
Expand Down