If you want to change ordering of review tab in product detail page then follow below steps:
Step 1. You need to override catalog_product_view.xml file in your theme [vendername]/[yourthemename]/Magento_Review/layout/ folder and paste the below code in between the body tag.
<referenceBlock name="reviews.tab"> <arguments> <argument name="sort_order" xsi:type="string">50</argument> </arguments> </referenceBlock>
Here I have set tab order 50, so you can change it with whatever value you want.

