Update README.md (#10583)

Remove nested use of <code> and triple backticks.
This commit is contained in:
Alex Barth 2025-08-07 19:27:38 +02:00 committed by GitHub
parent be401b71b5
commit c9abddfe7c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -139,14 +139,13 @@ True
<details> <details>
<summary>You have two branches - main and devel. How do you make sure devel is in sync with main?</summary><br><b> <summary>You have two branches - main and devel. How do you make sure devel is in sync with main?</summary><br><b>
<code>
``` ```
git checkout main git checkout main
git pull git pull
git checkout devel git checkout devel
git merge main git merge main
``` ```
</code>
</b></details> </b></details>