Skip to content

Commit 5853179

Browse files
authored
Fix typos in F# docs (#29105)
1 parent fbc2ed7 commit 5853179

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/fsharp/language-reference/task-expressions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ In a task expression, some expressions and operations are synchronous, and some
2424
The following code shows the difference between `let` and `let!`. The line of code that uses `let` just creates a task as an object that you can await later by using, for example, `task.Wait()` or `task.Result`. The line of code that uses `let!` starts the task and awaits its result.
2525

2626
```fsharp
27-
// let just stores the result as an task.
27+
// let just stores the result as a task.
2828
let (result1 : Task<int>) = stream.ReadAsync(buffer, offset, count, cancellationToken)
2929
// let! completes the asynchronous operation and returns the data.
3030
let! (result2 : int) = stream.ReadAsync(buffer, offset, count, cancellationToken)

docs/fsharp/language-reference/type-extensions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Type Extensions
3-
description: Learn how F# type extensions allow you add new members to a previously defined object type.
3+
description: Learn how F# type extensions allow you to add new members to a previously defined object type.
44
ms.date: 02/05/2020
55
---
66
# Type extensions

0 commit comments

Comments
 (0)