Skip to content

Commit 11cec0d

Browse files
committed
refactor: apply minor clean up
1 parent fde3fb0 commit 11cec0d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/main/kotlin/com/github/lppedd/cc/lookupElement/CommitTokenLookupElementDocumentationTargetProvider.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,13 @@ internal class CommitTokenLookupElementDocumentationTargetProvider : LookupEleme
3131
}
3232

3333
if (lookupElement is CommitTokenLookupElement) {
34-
return ConventionalCommitDocumentationTarget(lookupElement)
34+
return CommitTokenDocumentationTarget(lookupElement)
3535
}
3636

3737
return null
3838
}
3939

40-
private class ConventionalCommitDocumentationTarget(val element: CommitTokenLookupElement) : DocumentationTarget {
40+
private class CommitTokenDocumentationTarget(val element: CommitTokenLookupElement) : DocumentationTarget {
4141
override fun createPointer(): Pointer<out DocumentationTarget> =
4242
Pointer.hardPointer(this)
4343

0 commit comments

Comments
 (0)