Skip to content

Commit d95485c

Browse files
authored
Remove >> from F# tour (#5754)
* Remove >> from F# tour * feedback * feedback
1 parent 2ff84a3 commit d95485c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/fsharp/tour.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,11 +49,11 @@ It's important to note that because `struct` tuples are value types, they cannot
4949

5050
## Pipelines and Composition
5151

52-
Pipe operators (`|>`, `<|`, `||>`, `<||`, `|||>`, `<|||`) and composition operators (`>>` and `<<`) are used extensively when processing data in F#. These operators are functions which allow you to establish "pipelines" of functions in a flexible manner. The following example walks through how you could take advantage of these operators to build a simple functional pipeline.
52+
Pipe operators such as `|>` are used extensively when processing data in F#. These operators are functions that allow you to establish "pipelines" of functions in a flexible manner. The following example walks through how you can take advantage of these operators to build a simple functional pipeline:
5353

54-
[!code-fsharp[Pipelines](../../samples/snippets/fsharp/tour.fs#L227-L300)]
54+
[!code-fsharp[Pipelines](../../samples/snippets/fsharp/tour.fs#L227-L282)]
5555

56-
The above sample made use of many features of F#, including list processing functions, first-class functions, and [partial application](language-reference/functions/index.md#partial-application-of-arguments). Although a deep understanding of each of those concepts can become somewhat advanced, it should be clear how easily functions can be used to process data when building pipelines.
56+
The previous sample made use of many features of F#, including list processing functions, first-class functions, and [partial application](language-reference/functions/index.md#partial-application-of-arguments). Although a deep understanding of each of those concepts can become somewhat advanced, it should be clear how easily functions can be used to process data when building pipelines.
5757

5858
## Lists, Arrays, and Sequences
5959

0 commit comments

Comments
 (0)