Add custom text to checkout page

// -------Add custom text to checkout page
add_action( 'woocommerce_review_order_before_payment', 'add_payment_text', 50 );
function add_payment_text() {
    echo '<h3 class="custom-payment-method-header">Choose payment method.</h3>';
}