Skip to content

Commit c7e6058

Browse files
authored
Merge pull request #1520 from cloudclaim/main
chore: make function comments match function names
2 parents 645ac0a + 31c0a59 commit c7e6058

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

internal/database/sqlcommon/provider_sqlitego_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ type sqliteGoTestProvider struct {
4646
capabilities *database.Capabilities
4747
}
4848

49-
// newTestProvider creates a real in-memory database provider for e2e testing
49+
// newSQLiteTestProvider creates a real in-memory database provider for e2e testing
5050
func newSQLiteTestProvider(t *testing.T) (*sqliteGoTestProvider, func()) {
5151
conf := config.RootSection("unittest.db")
5252
conf.AddKnownKey("url", "test")

internal/identity/identitymanager.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ func (im *identityManager) ResolveInputVerifierRef(ctx context.Context, inputKey
201201
}, nil
202202
}
203203

204-
// ResolveInputIdentity takes in blockchain signing input information from an API call (which may
204+
// ResolveInputSigningIdentity takes in blockchain signing input information from an API call (which may
205205
// include author or key or both), and updates it with fully resolved and normalized values
206206
func (im *identityManager) ResolveInputSigningIdentity(ctx context.Context, signerRef *core.SignerRef) (err error) {
207207
log.L(ctx).Debugf("Resolving identity input: key='%s' author='%s'", signerRef.Key, signerRef.Author)

0 commit comments

Comments
 (0)