Kizuki
    Preparing search index...

    Interface CorrectionState

    A correction you made to the material.

    interface CorrectionState {
        at: string;
        correction: string;
        correctionId: string;
        note: string;
        passageId: string;
        quote: string;
        sessionId?: string;
    }
    Index
    at: string

    When the correction was recorded, as an ISO time string.

    correction: string

    Your version, trimmed. It wins over the material from then on.

    correctionId: string

    The correction's id: cor_ and 16 hex characters.

    note: string

    Your note about it, trimmed. May be empty. In a session it is your answer to the question.

    passageId: string

    The passage that holds the wrong text.

    quote: string

    The wrong text from the material, trimmed.

    sessionId?: string

    The session the correction came from. undefined if you made it outside a session.