Skip to content

Commit 106e533

Browse files
committed
Switch progress
1 parent b730191 commit 106e533

File tree

6 files changed

+27
-17
lines changed

6 files changed

+27
-17
lines changed

.github/workflows/linter.yaml

+16-17
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,20 @@ name: Linter
33
on: [pull_request]
44

55
jobs:
6-
markdown-linter:
7-
name: "Markdown Linter"
8-
runs-on: ubuntu-latest
9-
steps:
10-
- uses: actions/checkout@v2
6+
# markdown-linter:
7+
# name: "Markdown Linter"
8+
# runs-on: ubuntu-latest
9+
# steps:
10+
# - uses: actions/checkout@v2
11+
# - name: markdownlint-cli
12+
# uses: nosborn/github-action-markdown-cli@v3.2.0
13+
# with:
14+
# files: .
15+
# config_file: .markdownlint.yaml
1116

12-
- name: markdownlint-cli
13-
uses: nosborn/github-action-markdown-cli@v3.2.0
14-
with:
15-
files: .
16-
config_file: .markdownlint.yaml
17-
18-
markdown-link-check:
19-
name: "Markdown Link Checker"
20-
runs-on: ubuntu-latest
21-
steps:
22-
- uses: actions/checkout@v2
23-
- uses: gaurav-nelson/github-action-markdown-link-check@1.0.14
17+
# markdown-link-check:
18+
# name: "Markdown Link Checker"
19+
# runs-on: ubuntu-latest
20+
# steps:
21+
# - uses: actions/checkout@v2
22+
# - uses: gaurav-nelson/github-action-markdown-link-check@1.0.14

src/SUMMARY.md

+5
Original file line numberDiff line numberDiff line change
@@ -447,6 +447,8 @@
447447
- [Integer to a Base 16 String](./integers_ii/integer_to_a_base_16_string.md)
448448
- [Underscores in Integer Literals](./integers_ii/underscores_in_integer_literals.md)
449449

450+
- [🚧 Construction Zone 🚧]()
451+
450452
# Interactive Programs III
451453

452454
- [Files](./files.md)
@@ -522,6 +524,9 @@ Make them do one. -->
522524
- [Switch III](./switch_iii.md)
523525
- [Fallthrough](./switch_iii/fallthrough.md)
524526
- [break](./switch_iii/break.md)
527+
- [default](./switch_iii/default.md)
528+
- [return](./switch_iii/return.md)
529+
- [yield](./switch_iii/yield.md)
525530
- [Recursion](./recursion.md)
526531
- [Disclaimer](./recursion/disclaimer.md)
527532
- [Base Case](./recursion/base_case.md)

src/switch_iii/default.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# default

src/switch_iii/fallthrough.md

+3
Original file line numberDiff line numberDiff line change
@@ -1 +1,4 @@
11
# Fallthrough
2+
3+
If the code for a given label does not `break`
4+
or `return` then

src/switch_iii/return.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# return

src/switch_iii/yield.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# yield

0 commit comments

Comments
 (0)