aboutsummaryrefslogtreecommitdiff
path: root/library
diff options
context:
space:
mode:
authorAllan Wang <me@allanwang.ca>2017-06-23 16:50:01 -0700
committerAllan Wang <me@allanwang.ca>2017-06-23 16:50:01 -0700
commit61b5d89a90964be6c41c64e9904ab7adfc0f61bb (patch)
treeb3fe87db46203482057c395fe2446cb3f789104f /library
parent9b916cc37572bec9234fa1b60c9e2241e384d939 (diff)
downloadkau-61b5d89a90964be6c41c64e9904ab7adfc0f61bb.tar.gz
kau-61b5d89a90964be6c41c64e9904ab7adfc0f61bb.tar.bz2
kau-61b5d89a90964be6c41c64e9904ab7adfc0f61bb.zip
Make bullet point to bullet
Diffstat (limited to 'library')
-rw-r--r--library/src/main/kotlin/ca/allanwang/kau/changelog/Changelog.kt2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/src/main/kotlin/ca/allanwang/kau/changelog/Changelog.kt b/library/src/main/kotlin/ca/allanwang/kau/changelog/Changelog.kt
index 074bc35..24e6358 100644
--- a/library/src/main/kotlin/ca/allanwang/kau/changelog/Changelog.kt
+++ b/library/src/main/kotlin/ca/allanwang/kau/changelog/Changelog.kt
@@ -65,7 +65,7 @@ internal class ChangelogAdapter(val items: List<Pair<String, ChangelogType>>, @C
internal class ChangelogVH(itemView: View) : RecyclerView.ViewHolder(itemView) {
val text: TextView by bindView(R.id.kau_changelog_text)
- val bullet: TextView? by bindOptionalView(R.id.kau_changelog_text)
+ val bullet: TextView? by bindOptionalView(R.id.kau_changelog_bullet)
}
}