Skip to content

Commit b5ff73a

Browse files
committed
Minor improvements
1 parent 9920106 commit b5ff73a

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

.tool-versions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
nodejs 12.19.0
22
elixir 1.10.4-otp-23
33
erlang 23.1
4-
python 3.7.3
4+
python 3.9.1

apps/components_guide_web/assets/css/app.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -141,11 +141,11 @@ pre {
141141
--heading-1-size: var(--size-5xl);
142142
--heading-1-spacing: var(--size-base) 0;
143143
--heading-1-align: center;
144-
--heading-2-size: var(--size-3xl);
144+
--heading-2-size: var(--size-4xl);
145145
--heading-2-spacing: var(--size-base) 0;
146-
--heading-3-size: var(--size-2xl);
146+
--heading-3-size: var(--size-3xl);
147147
--heading-3-spacing: var(--size-base) 0;
148-
--heading-4-size: var(--size-xl);
148+
--heading-4-size: var(--size-2xl);
149149
--heading-4-spacing: var(--size-base) 0;
150150
--paragraph-spacing: 0.5rem 0;
151151
--listitem-spacing: 0.5rem 0;

apps/components_guide_web/lib/components_guide_web/templates/composable_systems/desirable-properties.html.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -74,17 +74,17 @@ abc
7474
- *e.g. a Git commit*
7575
- *e.g. a YouTube video cannot be edited*
7676

77-
<h2 id=stateless>Stateless</h2>
77+
<h3 id=stateless>Stateless</h3>
7878

7979
- Is [Deterministic](#deterministic)
80-
- *e.g. A Restful
80+
- *e.g. Restful HTTP GET request*
8181

82-
<h2 id=idempotent>Idempotent</h2>
82+
<h3 id=idempotent>Idempotent</h3>
8383

84-
- e.g. receiving at least once events
84+
- *e.g. At-least-once event delivery*
8585
- Could use Random identifier in request to record which commands have already been completed
8686

87-
<h2 id=versioned>Versioned</h2>
87+
<h3 id=versioned>Versioned</h3>
8888

8989
- Won't break previous usages
9090
- *e.g. [Stripe’s API Versioning](https://stripe.com/blog/api-versioning)*

0 commit comments

Comments
 (0)