change: Correct some package references in KDoc

This commit is contained in:
Nik Clayton 2024-04-30 16:09:16 +02:00
parent 56b0505955
commit 86d79276c6
3 changed files with 4 additions and 4 deletions

View File

@ -41,7 +41,7 @@ import app.pachli.core.network.model.Status
* @param icon icon to use when displaying the tab * @param icon icon to use when displaying the tab
* @param fragment [Fragment] to display the tab's contents * @param fragment [Fragment] to display the tab's contents
* @param title title to display in the action bar if this tab is active * @param title title to display in the action bar if this tab is active
* @param composeIntent intent to launch [ComposeActivity] for this timeline, or null * @param composeIntent intent to launch [app.pachli.components.compose.ComposeActivity] for this timeline, or null
* if composing from this timeline is not supported * if composing from this timeline is not supported
*/ */
data class TabViewData( data class TabViewData(

View File

@ -66,8 +66,8 @@ import okhttp3.OkHttpClient
* UI behaviour: * UI behaviour:
* *
* - Fragment starts, media description is visible at top of screen, video starts playing * - Fragment starts, media description is visible at top of screen, video starts playing
* - Media description + toolbar disappears after [CONTROLS_TIMEOUT] * - Media description + toolbar disappears after [ViewMediaFragment.CONTROLS_TIMEOUT]
* - Tapping shows controls + media description + toolbar, which fade after [CONTROLS_TIMEOUT] * - Tapping shows controls + media description + toolbar, which fade after [ViewMediaFragment.CONTROLS_TIMEOUT]
* - Tapping pause, or the media description, pauses the video and the controls + media description * - Tapping pause, or the media description, pauses the video and the controls + media description
* remain visible * remain visible
*/ */

View File

@ -61,7 +61,7 @@ typealias PollClickListener = (choices: List<Int>?) -> Unit
* *
* Otherwise the results of the poll are shown. * Otherwise the results of the poll are shown.
* *
* Classes hosting this should provide a [PollView.OnClickListener] to be notified when the * Classes hosting this should provide a [PollClickListener] to be notified when the
* user clicks on the poll (either to vote, or to navigate). * user clicks on the poll (either to vote, or to navigate).
*/ */
class PollView @JvmOverloads constructor( class PollView @JvmOverloads constructor(