Skip to content

Commit

Permalink
Merge pull request #359 from uoregon-libraries/fix/comments
Browse files Browse the repository at this point in the history
Fix comment typos / inaccuracies
  • Loading branch information
jechols authored Nov 18, 2024
2 parents 1c205bd + 1f78bad commit 711121d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/issuefinder/indexed.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"github.com/uoregon-libraries/newspaper-curation-app/src/models"
)

// FindInProcessIssues aggregates all issues which have been indexed in the database
// FindInProcessIssues aggregates all issues which are in NCA's workflow states
func (s *Searcher) FindInProcessIssues() error {
var err = s.init()
if err != nil {
Expand Down
4 changes: 2 additions & 2 deletions src/models/issue.go
Original file line number Diff line number Diff line change
Expand Up @@ -683,8 +683,8 @@ func (i *Issue) SchemaIssue() (*schema.Issue, error) {
return si, err
}

// FindCompletedIssuesReadyForRemoval returns all issues which are be complete
// and no longer needed in our workflow: tied to a closed (live_done) batch and
// FindCompletedIssuesReadyForRemoval returns all issues which are complete and
// no longer needed in our workflow: tied to a closed (live_done) batch and
// ignored by NCA, but still contain a location
func FindCompletedIssuesReadyForRemoval() ([]*Issue, error) {
var op = dbi.DB.Operation()
Expand Down

0 comments on commit 711121d

Please sign in to comment.