Skip to content

Commit 3c049be

Browse files
committed
Tweak configurator descriptions
1 parent 6c6cfb8 commit 3c049be

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docs/configurator.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
<br>
66
I want to support Linux, <input type="checkbox" id="os-mac"><label for="os-mac">macOS</label>, <input type="checkbox" id="os-win"><label for="os-win">Windows</label>.
77
<br>
8-
I want to support latest Crystal, <input type="checkbox" id="crystal-ver"><label for="crystal-ver">a particular older version</label> <input type="checkbox" id="crystal-nightly"><label for="crystal-nightly">and follow Crystal nightly</label>.
8+
I want to support latest Crystal, <input type="checkbox" id="crystal-ver"><label for="crystal-ver">a particular older version</label> <input type="checkbox" id="crystal-nightly"><label for="crystal-nightly">and follow Crystal <abbr title="Unreleased builds from the latest commit on master">nightlies</abbr></label>.
99
<br>
1010
<input type="checkbox" id="tool-format"><label for="tool-format">I format code with <code>crystal tool format</code></label>.
1111
<br>
12-
<input type="checkbox" id="cache-shards"><label for="cache-shards">Cache dependencies (worth only if there are many).</label>
12+
<input type="checkbox" id="cache-shards"><label for="cache-shards">Cache dependencies (worth only if there are many)</label>.
1313

1414
{% for is_app in false, true %}
1515
{% for os_win in false, true %}
@@ -71,14 +71,14 @@ jobs:
7171
SHARDS_OPTS: --ignore-crystal-version
7272
{%- endif %}
7373
steps:
74+
- name: Download source
75+
uses: actions/checkout@v2
7476
- name: Install Crystal
7577
uses: oprypin/install-crystal@v1
7678
{%- if crystal_nightly or crystal_ver %}
7779
with:
7880
crystal: {{ "${{ matrix.crystal }}" }}
7981
{%- endif %}
80-
- name: Download source
81-
uses: actions/checkout@v2
8282
{%- if cache_shards %}
8383
- name: Cache shards
8484
uses: actions/cache@v2
@@ -92,7 +92,7 @@ jobs:
9292
restore-keys: {{ "${{ runner.os }}-shards-" }}
9393
{%- endif %}
9494
{%- endif %}
95-
- name: Install Shards
95+
- name: Install shards
9696
{%- if is_app %}
9797
run: {% if cache_shards %}shards check || {% endif %}shards install
9898
{%- else %}

0 commit comments

Comments
 (0)