Skip to content

Commit 74171fa

Browse files
authored
Merge pull request #135 from jbampton/fix-spelling
Fix spelling
2 parents bf04dd1 + 3e3947f commit 74171fa

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

docs/thinking/Risk-First-Diagrams.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ There are [all kinds of risks](/risks/Risk-Landscape) we face in life and we att
8383

8484
As well as considering Risk-First diagrams to be like the [Stimulus-Response Model](https://en.wikipedia.org/wiki/Stimulus–response_model), you could also think in terms of [functional programming](https://en.wikipedia.org/wiki/Functional_programming), which might be more familiar to us as software developers.
8585

86-
We are _tranforming_ an input condition (on the left) into an _output_ condition (on the right) by way of a function (the action we take, in the middle).
86+
We are _transforming_ an input condition (on the left) into an _output_ condition (on the right) by way of a function (the action we take, in the middle).
8787

8888
## Other Elements
8989

src/components/front/HomeSection/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import React from 'react';
22
import styles from './styles.module.css'
33
import MonoIcon from '../MonoIcon'
44

5-
// left, right panels, a call to action adn a footer icon
5+
// left, right panels, a call to action and a footer icon
66
export default ({children, alt, reverse}) => {
77
return (
88
<section className={alt ? styles.homeSectionAlt : styles.homeSection}>

src/components/front/HomeSection2/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import React from 'react';
22
import styles from './styles.module.css'
33
import MonoIcon from '../MonoIcon'
44

5-
// title, central panel, a call to action adn a footer icon
5+
// title, central panel, a call to action and a footer icon
66
export default ({ children, alt }) => {
77
return (
88
<section className={alt ? styles.homeSectionAlt : styles.homeSection}>

unused_content/complexity/End-Of-Complexity.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Faced with this baffling choice, what are developers to do? Jono Bacon, at the
3131

3232
The current approach developers apply all the time is the [Lindy Effect](https://en.wikipedia.org/wiki/Lindy_effect): assume that any software that has been around x years will be around another x years. This really restricts the search-space, but means you're not on the bleeding edge. (Often a good thing).
3333

34-
A variation on this is social status- indicated by GitHub stars or questions on Stack Overflow, or the number of conferences about that thing.
34+
A variation on this is social status indicated by GitHub stars or questions on Stack Overflow, or the number of conferences about that thing.
3535

3636
We're kind of getting by with this - but it still gets harder all the time. There are just too many options to even _discover_ them all these days. It's more likely that we're using a tool X due to some historical accident rather than any reasoned analysis of its strengths or weaknesses.
3737

unused_content/complexity/Hierarchies.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ tweet: yes
1616

1717
##### "Hierarchies are the wheel we're happy to re-invent over and over and over again."
1818

19-
Have you noticed just how prevalent the idea of _heirarchy_ is in software? By hierarchy, I mean a general pattern of _connectedness_, where a _parent_ has some _children_, who, in turn, may each have some further children, and so on.
19+
Have you noticed just how prevalent the idea of _hierarchy_ is in software? By hierarchy, I mean a general pattern of _connectedness_, where a _parent_ has some _children_, who, in turn, may each have some further children, and so on.
2020

2121
This is a really popular pattern. But what's odd about it is that we seem to re-invent it over and over again in software.
2222

0 commit comments

Comments
 (0)