Skip to content

Commit a39c77c

Browse files
authored
Merge pull request #963 from fsharp/dsyme/fixes
tweak samples
2 parents fc79f38 + d3c8ed2 commit a39c77c

File tree

4 files changed

+3
-37
lines changed

4 files changed

+3
-37
lines changed

_snippets/aoc_day1.md

-34
This file was deleted.

_snippets/async_expressions.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
order: 15
2+
order: 16
33
title: AsyncExpressions.fs
44
excerpt_separator: <!--more-->
55
code: |

_snippets/computation_expressions.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ code: |
2929
return { Name = validName; Age = validAge }
3030
}
3131
---
32-
## Control the Complexity with Computation Expressions
32+
## Clean Code with Computation Expressions
3333

3434
F# computation expressions give you an elegant syntax for compositional control flows with a clean, readable notation that some say is F#'s superpower.
3535
<!--more-->

_snippets/unitsOfMeasure.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ code: |
1616
let fallDistance = distance fallDuration
1717
printfn $"Distance fallen in {fallDuration}s is {fallDistance}m"
1818
---
19-
## Numaric Safety through Units of Measure
19+
## Safe Numbers through Units of Measure
2020

2121
F# offers world-class compile-time unit safety without runtime overhead, giving you the power to express your domain in a type-safe way. This is particularly useful in scientific, engineering and financial applications where unit errors can lead to catastrophic results.
2222
<!--more-->

0 commit comments

Comments
 (0)