chore: fix syntax highlighting languages

This commit is contained in:
Oliver Davies 2023-04-22 16:49:04 +01:00
parent 14d096a53b
commit 84be97413d
68 changed files with 215 additions and 215 deletions

View file

@ -44,7 +44,7 @@ I had a quick look for a _Update my fork_ button or something, but couldn't see
one to I added the main repository as an additional remote called `upstream` and
fetched the changes.
```language-bash
```bash
$ git remote add upstream https://github.com/sculpin/sculpin.io.git
$ git fetch upstream
@ -60,7 +60,7 @@ Now my local site knows about the upstream repo, and I could rebase the changes
(`git pull upstream master` should have worked too) and push them back to
origin.
```language-bash
```bash
$ git rebase upstream/master
First, rewinding head to replay your work on top of it...
...