Change order of combined product tabs

Literally just swap the order of them in the code:

add_filter( 'woocommerce_product_tabs', function( $tabs ) {
$tabs['description']['callback'] = function() {
    global $product;
    if ( $product && ( $product->has_attributes() || apply_filters(
'wc_product_enable_dimensions_display', $product->has_weight() || $product->has_dimensions() ) ) ) 
        wc_get_template( 'single-product/tabs/additional-information.php' );
    }
    wc_get_template( 'single-product/tabs/description.php' );
};
return $tabs;
}, 98 );