Skip to content

Commit a87c99e

Browse files
committed
Fix typo
1 parent c4e9351 commit a87c99e

File tree

4 files changed

+16
-6
lines changed

4 files changed

+16
-6
lines changed

.github/dependabot.yml

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
version: 2
2+
updates:
3+
# Enable version updates for GitHub action workflows
4+
- package-ecosystem: "github-actions"
5+
directory: "/"
6+
# Check for updates to GitHub Actions every weekday
7+
schedule:
8+
interval: "daily"
9+
time: "19:00"
10+
open-pull-requests-limit: 10

.github/workflows/ci.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ jobs:
88
ci:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v3
12-
- uses: actions/cache@v3
11+
- uses: actions/checkout@v4
12+
- uses: actions/cache@v4
1313
with:
1414
path: ~/.cache/yarn/v6
1515
key: ${{ runner.os }}-yarn-${{ hashFiles('yarn.lock') }}
@@ -22,7 +22,7 @@ jobs:
2222
nofixups:
2323
runs-on: ubuntu-latest
2424
steps:
25-
- uses: actions/checkout@v3
25+
- uses: actions/checkout@v4
2626
- run: git submodule update --init
2727
- run: COLOR=1 ./ci/sub/bin/nofixups.sh
2828
env:

.github/workflows/daily.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ jobs:
1111
ci:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v3
15-
- uses: actions/cache@v3
14+
- uses: actions/checkout@v4
15+
- uses: actions/cache@v4
1616
with:
1717
path: ~/.cache/yarn/v6
1818
key: ${{ runner.os }}-yarn-${{ hashFiles('yarn.lock') }}

docs/tour/design.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ digraph "Linux_kernel_diagram" {
118118

119119
Imagine if you couldn't separate HTML and CSS and it all had to be inlined.
120120

121-
Of course, good aesthetics are essential to good documentation. D2 certianly prioritizes
121+
Of course, good aesthetics are essential to good documentation. D2 certainly prioritizes
122122
aesthetics, but it must be decoupled with the content.
123123

124124
D2 is the only language that allows you to define just nodes and edges, and import all the

0 commit comments

Comments
 (0)