Clean up broken documentation links (#1116)

This commit is contained in:
David Perez 2024-03-08 15:07:32 -06:00 committed by Álison Fernandes
parent 43a7e2a5fd
commit af9e3d36a4
7 changed files with 7 additions and 4 deletions

View file

@ -1,10 +1,11 @@
package com.x8bit.bitwarden.data.auth.repository.model
import com.x8bit.bitwarden.data.vault.datasource.network.model.SyncResponseJson
import kotlinx.serialization.SerialName
import kotlinx.serialization.Serializable
/**
* The policy information decoded from the [data] parameter of the [SyncResponseJson.Policy] object.
* The policy information decoded from the `data` parameter of the [SyncResponseJson.Policy] object.
*/
@Serializable
sealed class PolicyInformation {

View file

@ -37,7 +37,7 @@ fun generateUriForCaptcha(captchaId: String): Uri {
/**
* Retrieves a [CaptchaCallbackTokenResult] from an Intent. There are three possible cases.
*
* - [null]: Intent is not a captcha callback, or data is null.
* - `null`: Intent is not a captcha callback, or data is null.
*
* - [CaptchaCallbackTokenResult.MissingToken]:
* Intent is the captcha callback, but its missing a token value.

View file

@ -7,7 +7,7 @@ private const val DUO_HOST: String = "duo-callback"
/**
* Retrieves a [DuoCallbackTokenResult] from an Intent. There are three possible cases.
*
* - [null]: Intent is not a Duo callback, or data is null.
* - `null`: Intent is not a Duo callback, or data is null.
*
* - [DuoCallbackTokenResult.MissingToken]: Intent is the Duo callback, but it's missing the code or
* state value.

View file

@ -25,6 +25,7 @@ import androidx.compose.ui.unit.dp
import androidx.compose.ui.window.Dialog
import com.x8bit.bitwarden.R
import com.x8bit.bitwarden.ui.platform.components.button.BitwardenTextButton
import com.x8bit.bitwarden.ui.platform.components.dialog.row.BitwardenSelectionRow
import com.x8bit.bitwarden.ui.platform.components.util.maxDialogHeight
/**

View file

@ -11,6 +11,7 @@ import androidx.compose.runtime.Composable
import androidx.compose.runtime.remember
import androidx.compose.ui.Modifier
import androidx.compose.ui.unit.dp
import com.x8bit.bitwarden.ui.platform.components.dialog.BitwardenSelectionDialog
/**
* A simple clickable row for use within a [BitwardenSelectionDialog] as an alternative to a

View file

@ -4,6 +4,7 @@ import androidx.compose.material3.MaterialTheme
import androidx.compose.runtime.Composable
import androidx.compose.runtime.ReadOnlyComposable
import androidx.compose.ui.text.SpanStyle
import androidx.compose.ui.text.TextStyle
/**
* Defines a span style for clickable span texts. Useful because spans require a

View file

@ -21,7 +21,6 @@ import com.x8bit.bitwarden.ui.vault.feature.addedit.model.UriItem
* @property onSetupTotpClick Handles the action when the setup TOTP button is clicked.
* @property onCopyTotpKeyClick Handles the action when the copy TOTP text button is clicked.
* @property onClearTotpKeyClick Handles the action when the clear TOTP text button is clicked.
* @property onUriSettingsClick Handles the action when the URI settings button is clicked.
* @property onAddNewUriClick Handles the action when the add new URI button is clicked.
*/
@Suppress("LongParameterList")