Skip to content

Commit b515058

Browse files
committed
Fix typo's
1 parent 299a2ab commit b515058

File tree

1 file changed

+13
-9
lines changed

1 file changed

+13
-9
lines changed

slides/function_signature_design/function_signature_design.md

Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -454,20 +454,24 @@ if(w) { w->defaultValue("xxx"); }
454454
455455
--
456456
457-
### Wordt Type: Verb
457+
### Word Type: Verb
458458
459-
* action
460-
* side-effect
461-
* non-pure
459+
* present tense: action, side-effect
460+
* `shuffle(begin(xs), end(xs))`
461+
* non-pure
462+
* past tense: derivative
463+
* `sorted(range)`
464+
* pure
462465
463466
--
464467
465-
### Wordt Type: Adjective
468+
### Word Type: Adjective
466469
467-
* property
468-
* predicate
469-
* replace `isBig()` with `big()`
470-
* replace `hasX()` with `optional<X> x()` or `withX(callback)`
470+
* property: describes an aspect
471+
* `Person.name`
472+
* predicate: answer to yes/no question
473+
* C++: replace `isBig()` with `big()`
474+
* C++: replace `hasX()` with `optional<X> x()` or `withX(callback)`
471475
472476
--
473477

0 commit comments

Comments
 (0)