Skip to content
This repository was archived by the owner on Nov 26, 2024. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 15 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,18 @@
# NOTE - FROZEN CONTENT

The content of this repository is frozen.
# Visual F# Documentation

All conceptual documentation (guides, language reference, compiler and F# Interactive reference) are actively maintained [here](https://github.com/dotnet/docs), with a [live set on docs.microsoft.com](https://docs.microsoft.com/en-us/dotnet/fsharp/).
[![Project Status: Suspended - Initial development has started, but there has not yet been a stable, usable release; work has been stopped for the time being but the author(s) intend on resuming work.](http://www.repostatus.org/badges/latest/suspended.svg)](http://www.repostatus.org/#suspended)

All reference content for FSharp.Core will be migrated over to docs.microsoft.com soon, and regular contributions will be accepted in the same repository as the conceptual content (and any changes to that will be reflected here).
## FROZEN CONTENT

This content is frozen. It will be migrated to docs.microsoft.com.

Welcome to the open F# documentation! As we transitioned the entire publishing pipeline for this document set to Open Publishing, we are now allowing public contributions to the docs. Built and validated documents are published [on MSDN](https://msdn.microsoft.com/en-us/visualfsharpdocs/conceptual/visual-fsharp).

## Troubleshooting & Questions
Simply [open an issue](https://github.com/Microsoft/visualfsharpdocs/issues) and we'll get in touch as soon as possible.

## Microsoft Open Source Code of Conduct

This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/).
For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [[email protected]](mailto:[email protected]) with any additional questions or comments.
4 changes: 2 additions & 2 deletions docs/conceptual/list.partition['t]-function-[fsharp].md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ The input list.

## Return Value

A list containing the elements for which the predicate evaluated to `false` and a list containing the elements for which the predicate evaluated to `true`.
A list containing the elements for which the predicate evaluated to `true` and a list containing the elements for which the predicate evaluated to `false`.

## Remarks
This function is named `Partition` in compiled assemblies. If you are accessing the function from a language other than F#, or through reflection, use this name.
Expand Down Expand Up @@ -74,4 +74,4 @@ Supported in: 2.0, 4.0, Portable
## See Also
[Collections.List Module (F#)](Collections.List-Module-%5BFSharp%5D.md)

[Microsoft.FSharp.Collections Namespace (F#)](Microsoft.FSharp.Collections-Namespace-%5BFSharp%5D.md)
[Microsoft.FSharp.Collections Namespace (F#)](Microsoft.FSharp.Collections-Namespace-%5BFSharp%5D.md)
2 changes: 1 addition & 1 deletion docs/conceptual/map.find['key,'t]-function-[fsharp].md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ This function is named `Find` in compiled assemblies. If you are accessing the f

## Example

The following examples shows how to use Map.filter.
The following examples shows how to use Map.find.

[!code-fsharp[Main](snippets/fsmaps/snippet6.fs)]

Expand Down