Skip to content
This repository was archived by the owner on Nov 26, 2024. It is now read-only.

Corrected prefix minus to prefix plus - #289

Merged
Phillip Carter (cartermp) merged 1 commit into
MicrosoftDocs:livefrom
svick:patch-1
May 21, 2017
Merged

Corrected prefix minus to prefix plus#289
Phillip Carter (cartermp) merged 1 commit into
MicrosoftDocs:livefrom
svick:patch-1

Conversation

@svick

Copy link
Copy Markdown
Contributor

No description provided.

@msftclas

Petr Onderka (@svick),
Thanks for having already signed the Contribution License Agreement. Your agreement was validated by Microsoft. We will now review your pull request.
Thanks,
Microsoft Pull Request Bot

@orcabot

Copy link
Copy Markdown
Contributor

@orcabot

Copy link
Copy Markdown
Contributor

Hi! I'm your friendly content validation bot. For this PR to be labeled as ready-to-merge, you'll need at least 2 comments from our designated community approvers containing the magic phrase LGTM (Looks good to me also works, for those of us that are really verbose).

Den Delimarsky (@dend)Kevin Ransom (@KevinRansom)Phillip Carter (@cartermp)Dan Fernandez (@thedanfernandez)Don Syme (@dsyme) - please validate this PR.

2 similar comments
@orcabot

Copy link
Copy Markdown
Contributor

Hi! I'm your friendly content validation bot. For this PR to be labeled as ready-to-merge, you'll need at least 2 comments from our designated community approvers containing the magic phrase LGTM (Looks good to me also works, for those of us that are really verbose).

Den Delimarsky (@dend)Kevin Ransom (@KevinRansom)Phillip Carter (@cartermp)Dan Fernandez (@thedanfernandez)Don Syme (@dsyme) - please validate this PR.

@orcabot

Copy link
Copy Markdown
Contributor

Hi! I'm your friendly content validation bot. For this PR to be labeled as ready-to-merge, you'll need at least 2 comments from our designated community approvers containing the magic phrase LGTM (Looks good to me also works, for those of us that are really verbose).

Den Delimarsky (@dend)Kevin Ransom (@KevinRansom)Phillip Carter (@cartermp)Dan Fernandez (@thedanfernandez)Don Syme (@dsyme) - please validate this PR.

@dend

Copy link
Copy Markdown
Contributor

✅ Validation status: passed

FileStatusPreview URLDetails
docs/conceptual/core.operators-module-[fsharp].md✅Succeeded

For more details, please refer to the build report.

Note: If you changed an existing file name or deleted a file, broken links in other files to the deleted or renamed file are listed only in the full build report.

@cartermp
Phillip Carter (cartermp) merged commit 395603a into MicrosoftDocs:liveMay 21, 2017
@svick
Petr Onderka (svick) deleted the patch-1 branch May 21, 2017 14:53
Astorlights pushed a commit to Astorlights/visualfsharpdocs that referenced this pull request Jun 20, 2018
Phillip Carter (cartermp) added a commit that referenced this pull request Jun 20, 2018
* Fix broken table (#269)
* Fix code indentation (#267)
* corrected the output (#276)
* Update collections.array - fsharp .md (#271)
fixed signature for copy function
* fix and consolidate list.xyz2/xyz3 doc for input lists with different lengths (#282)
* Fix escape sequence. (#285)
* Add missing space (#284)
* Fix order of arguments in foldBack lambda (#286)
Running the following in F# Interactive will help explain why I believe this change is necessary:
> List.foldBack (fun elem acc -> printf "elem: %A " elem; elem + acc) [1;2;3;4] 0;;
elem: 4 elem: 3 elem: 2 elem: 1 val it : int = 10
> List.foldBack (fun acc elem -> printf "elem: %A " elem; elem + acc) [1;2;3;4] 0;;
elem: 0 elem: 4 elem: 7 elem: 9 val it : int = 10
The accumulator is the second argument in foldBack (contrary to fold where it is the first).
Positioning the arguments in reverse in an example is a great way to confuse a reader.
This also helps promote the fact that the state and list arguments to the folding function
are in the same order as their lambda counterparts.
Feel free to disagree :-).
* Fix Operators.atan2 description (#287)
atan2(y, x) is related to atan(y/x), *not* atan(x/y)
* Fixed code formatting (#288)
* Corrected prefix minus to prefix plus (#289)
* Added missing line break
Added missing line break to class definition of Microsoft.FSharp.Reflection.UnionCaseInfo
* Removed Missing CustomOperationAttribute Issue #266
* JoinConditionWord was Accidentally removed despite not being duplicated. Fixing this.
* Fix typo in Array2D.init docs
* Document that Map.pick can throw KeynotFoundException
* Update async.startchild['t]-method-[fsharp].md
Specify timeout behaviour
* Fix List.compareWith case
* Update walkthrough-using-visual-fsharp-to-create,-debug,-and-deploy-an-application.md
* Added treatment of null-values, and fixed incomplete text on IFormattable (#301)
The `string` function casts to `IFormattable` internally. The original text only mentioned integer and floating point values, but in fact, there are many more values in the BCL that implement IFormattable. I improved the text to be more precise.
Furthermore, special treatment of `null` was not mentioned, I've added that. Expanded supported platforms, and fixed a typo.
* Update quotations.patterns-module-[fsharp].md (#302)
Thanks @Columpio
* Clarified how ties are resolved (#304)
* Add except to list modules (#305)
The except function added in fsharp/fslang-design#41 doesn't have a doc here.
Phillip Carter (cartermp) pushed a commit that referenced this pull request Jun 20, 2018
#309)
* Fix broken table (#269)
* Fix code indentation (#267)
* corrected the output (#276)
* Update collections.array - fsharp .md (#271)
fixed signature for copy function
* fix and consolidate list.xyz2/xyz3 doc for input lists with different lengths (#282)
* Fix escape sequence. (#285)
* Add missing space (#284)
* Fix order of arguments in foldBack lambda (#286)
Running the following in F# Interactive will help explain why I believe this change is necessary:
> List.foldBack (fun elem acc -> printf "elem: %A " elem; elem + acc) [1;2;3;4] 0;;
elem: 4 elem: 3 elem: 2 elem: 1 val it : int = 10
> List.foldBack (fun acc elem -> printf "elem: %A " elem; elem + acc) [1;2;3;4] 0;;
elem: 0 elem: 4 elem: 7 elem: 9 val it : int = 10
The accumulator is the second argument in foldBack (contrary to fold where it is the first).
Positioning the arguments in reverse in an example is a great way to confuse a reader.
This also helps promote the fact that the state and list arguments to the folding function
are in the same order as their lambda counterparts.
Feel free to disagree :-).
* Fix Operators.atan2 description (#287)
atan2(y, x) is related to atan(y/x), *not* atan(x/y)
* Fixed code formatting (#288)
* Corrected prefix minus to prefix plus (#289)
* Added missing line break
Added missing line break to class definition of Microsoft.FSharp.Reflection.UnionCaseInfo
* Removed Missing CustomOperationAttribute Issue #266
* JoinConditionWord was Accidentally removed despite not being duplicated. Fixing this.
* Fix typo in Array2D.init docs
* Document that Map.pick can throw KeynotFoundException
* Update async.startchild['t]-method-[fsharp].md
Specify timeout behaviour
* Update walkthrough-using-visual-fsharp-to-create,-debug,-and-deploy-an-application.md
* Added treatment of null-values, and fixed incomplete text on IFormattable (#301)
The `string` function casts to `IFormattable` internally. The original text only mentioned integer and floating point values, but in fact, there are many more values in the BCL that implement IFormattable. I improved the text to be more precise.
Furthermore, special treatment of `null` was not mentioned, I've added that. Expanded supported platforms, and fixed a typo.
* Update list.partition['t]-function-[fsharp].md
Phillip Carter (cartermp) added a commit that referenced this pull request Jun 20, 2018
* Live -> master (#313)
* Fix broken table (#269)
* Fix code indentation (#267)
* corrected the output (#276)
* Update collections.array - fsharp .md (#271)
fixed signature for copy function
* fix and consolidate list.xyz2/xyz3 doc for input lists with different lengths (#282)
* Fix escape sequence. (#285)
* Add missing space (#284)
* Fix order of arguments in foldBack lambda (#286)
Running the following in F# Interactive will help explain why I believe this change is necessary:
> List.foldBack (fun elem acc -> printf "elem: %A " elem; elem + acc) [1;2;3;4] 0;;
elem: 4 elem: 3 elem: 2 elem: 1 val it : int = 10
> List.foldBack (fun acc elem -> printf "elem: %A " elem; elem + acc) [1;2;3;4] 0;;
elem: 0 elem: 4 elem: 7 elem: 9 val it : int = 10
The accumulator is the second argument in foldBack (contrary to fold where it is the first).
Positioning the arguments in reverse in an example is a great way to confuse a reader.
This also helps promote the fact that the state and list arguments to the folding function
are in the same order as their lambda counterparts.
Feel free to disagree :-).
* Fix Operators.atan2 description (#287)
atan2(y, x) is related to atan(y/x), *not* atan(x/y)
* Fixed code formatting (#288)
* Corrected prefix minus to prefix plus (#289)
* Added missing line break
Added missing line break to class definition of Microsoft.FSharp.Reflection.UnionCaseInfo
* Removed Missing CustomOperationAttribute Issue #266
* JoinConditionWord was Accidentally removed despite not being duplicated. Fixing this.
* Fix typo in Array2D.init docs
* Document that Map.pick can throw KeynotFoundException
* Update async.startchild['t]-method-[fsharp].md
Specify timeout behaviour
* Fix List.compareWith case
* Update walkthrough-using-visual-fsharp-to-create,-debug,-and-deploy-an-application.md
* Added treatment of null-values, and fixed incomplete text on IFormattable (#301)
The `string` function casts to `IFormattable` internally. The original text only mentioned integer and floating point values, but in fact, there are many more values in the BCL that implement IFormattable. I improved the text to be more precise.
Furthermore, special treatment of `null` was not mentioned, I've added that. Expanded supported platforms, and fixed a typo.
* Update quotations.patterns-module-[fsharp].md (#302)
Thanks @Columpio
* Clarified how ties are resolved (#304)
* Add except to list modules (#305)
The except function added in fsharp/fslang-design#41 doesn't have a doc here.
* Correcting the Return Value in list.partition['t]-function-[fsharp].md (#309)
* Fix broken table (#269)
* Fix code indentation (#267)
* corrected the output (#276)
* Update collections.array - fsharp .md (#271)
fixed signature for copy function
* fix and consolidate list.xyz2/xyz3 doc for input lists with different lengths (#282)
* Fix escape sequence. (#285)
* Add missing space (#284)
* Fix order of arguments in foldBack lambda (#286)
Running the following in F# Interactive will help explain why I believe this change is necessary:
> List.foldBack (fun elem acc -> printf "elem: %A " elem; elem + acc) [1;2;3;4] 0;;
elem: 4 elem: 3 elem: 2 elem: 1 val it : int = 10
> List.foldBack (fun acc elem -> printf "elem: %A " elem; elem + acc) [1;2;3;4] 0;;
elem: 0 elem: 4 elem: 7 elem: 9 val it : int = 10
The accumulator is the second argument in foldBack (contrary to fold where it is the first).
Positioning the arguments in reverse in an example is a great way to confuse a reader.
This also helps promote the fact that the state and list arguments to the folding function
are in the same order as their lambda counterparts.
Feel free to disagree :-).
* Fix Operators.atan2 description (#287)
atan2(y, x) is related to atan(y/x), *not* atan(x/y)
* Fixed code formatting (#288)
* Corrected prefix minus to prefix plus (#289)
* Added missing line break
Added missing line break to class definition of Microsoft.FSharp.Reflection.UnionCaseInfo
* Removed Missing CustomOperationAttribute Issue #266
* JoinConditionWord was Accidentally removed despite not being duplicated. Fixing this.
* Fix typo in Array2D.init docs
* Document that Map.pick can throw KeynotFoundException
* Update async.startchild['t]-method-[fsharp].md
Specify timeout behaviour
* Update walkthrough-using-visual-fsharp-to-create,-debug,-and-deploy-an-application.md
* Added treatment of null-values, and fixed incomplete text on IFormattable (#301)
The `string` function casts to `IFormattable` internally. The original text only mentioned integer and floating point values, but in fact, there are many more values in the BCL that implement IFormattable. I improved the text to be more precise.
Furthermore, special treatment of `null` was not mentioned, I've added that. Expanded supported platforms, and fixed a typo.
* Update list.partition['t]-function-[fsharp].md
* Fixed formatting of README (#291)
Phillip Carter (cartermp) added a commit that referenced this pull request Jun 20, 2018
* Live -> master (#313)
* Fix broken table (#269)
* Fix code indentation (#267)
* corrected the output (#276)
* Update collections.array - fsharp .md (#271)
fixed signature for copy function
* fix and consolidate list.xyz2/xyz3 doc for input lists with different lengths (#282)
* Fix escape sequence. (#285)
* Add missing space (#284)
* Fix order of arguments in foldBack lambda (#286)
Running the following in F# Interactive will help explain why I believe this change is necessary:
> List.foldBack (fun elem acc -> printf "elem: %A " elem; elem + acc) [1;2;3;4] 0;;
elem: 4 elem: 3 elem: 2 elem: 1 val it : int = 10
> List.foldBack (fun acc elem -> printf "elem: %A " elem; elem + acc) [1;2;3;4] 0;;
elem: 0 elem: 4 elem: 7 elem: 9 val it : int = 10
The accumulator is the second argument in foldBack (contrary to fold where it is the first).
Positioning the arguments in reverse in an example is a great way to confuse a reader.
This also helps promote the fact that the state and list arguments to the folding function
are in the same order as their lambda counterparts.
Feel free to disagree :-).
* Fix Operators.atan2 description (#287)
atan2(y, x) is related to atan(y/x), *not* atan(x/y)
* Fixed code formatting (#288)
* Corrected prefix minus to prefix plus (#289)
* Added missing line break
Added missing line break to class definition of Microsoft.FSharp.Reflection.UnionCaseInfo
* Removed Missing CustomOperationAttribute Issue #266
* JoinConditionWord was Accidentally removed despite not being duplicated. Fixing this.
* Fix typo in Array2D.init docs
* Document that Map.pick can throw KeynotFoundException
* Update async.startchild['t]-method-[fsharp].md
Specify timeout behaviour
* Fix List.compareWith case
* Update walkthrough-using-visual-fsharp-to-create,-debug,-and-deploy-an-application.md
* Added treatment of null-values, and fixed incomplete text on IFormattable (#301)
The `string` function casts to `IFormattable` internally. The original text only mentioned integer and floating point values, but in fact, there are many more values in the BCL that implement IFormattable. I improved the text to be more precise.
Furthermore, special treatment of `null` was not mentioned, I've added that. Expanded supported platforms, and fixed a typo.
* Update quotations.patterns-module-[fsharp].md (#302)
Thanks @Columpio
* Clarified how ties are resolved (#304)
* Add except to list modules (#305)
The except function added in fsharp/fslang-design#41 doesn't have a doc here.
* Correcting the Return Value in list.partition['t]-function-[fsharp].md (#309)
* Fix broken table (#269)
* Fix code indentation (#267)
* corrected the output (#276)
* Update collections.array - fsharp .md (#271)
fixed signature for copy function
* fix and consolidate list.xyz2/xyz3 doc for input lists with different lengths (#282)
* Fix escape sequence. (#285)
* Add missing space (#284)
* Fix order of arguments in foldBack lambda (#286)
Running the following in F# Interactive will help explain why I believe this change is necessary:
> List.foldBack (fun elem acc -> printf "elem: %A " elem; elem + acc) [1;2;3;4] 0;;
elem: 4 elem: 3 elem: 2 elem: 1 val it : int = 10
> List.foldBack (fun acc elem -> printf "elem: %A " elem; elem + acc) [1;2;3;4] 0;;
elem: 0 elem: 4 elem: 7 elem: 9 val it : int = 10
The accumulator is the second argument in foldBack (contrary to fold where it is the first).
Positioning the arguments in reverse in an example is a great way to confuse a reader.
This also helps promote the fact that the state and list arguments to the folding function
are in the same order as their lambda counterparts.
Feel free to disagree :-).
* Fix Operators.atan2 description (#287)
atan2(y, x) is related to atan(y/x), *not* atan(x/y)
* Fixed code formatting (#288)
* Corrected prefix minus to prefix plus (#289)
* Added missing line break
Added missing line break to class definition of Microsoft.FSharp.Reflection.UnionCaseInfo
* Removed Missing CustomOperationAttribute Issue #266
* JoinConditionWord was Accidentally removed despite not being duplicated. Fixing this.
* Fix typo in Array2D.init docs
* Document that Map.pick can throw KeynotFoundException
* Update async.startchild['t]-method-[fsharp].md
Specify timeout behaviour
* Update walkthrough-using-visual-fsharp-to-create,-debug,-and-deploy-an-application.md
* Added treatment of null-values, and fixed incomplete text on IFormattable (#301)
The `string` function casts to `IFormattable` internally. The original text only mentioned integer and floating point values, but in fact, there are many more values in the BCL that implement IFormattable. I improved the text to be more precise.
Furthermore, special treatment of `null` was not mentioned, I've added that. Expanded supported platforms, and fixed a typo.
* Update list.partition['t]-function-[fsharp].md
* Fixed formatting of README (#291)
Sign up for freeto subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

5 participants

@svick@msftclas@orcabot@dend@cartermp