From c0aadb461e0a9a3026138e44b8f97956c1dd0603 Mon Sep 17 00:00:00 2001
From: Dan Fuchs <330402+fajpunk@users.noreply.github.com>
Date: Tue, 19 Dec 2023 20:31:04 -0600
Subject: [PATCH] typo in foldBack summary
---
src/FSharp.Core/result.fsi | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/FSharp.Core/result.fsi b/src/FSharp.Core/result.fsi
index a5b7a5cb37a..c10226ab6ba 100644
--- a/src/FSharp.Core/result.fsi
+++ b/src/FSharp.Core/result.fsi
@@ -166,7 +166,7 @@ module Result =
val inline fold<'T, 'Error, 'State> :
folder: ('State -> 'T -> 'State) -> state: 'State -> result: Result<'T, 'Error> -> 'State
- /// fold f inp s evaluates to match inp with Error _ -> s | Ok x -> f x s.
+ /// foldBack f inp s evaluates to match inp with Error _ -> s | Ok x -> f x s.
///
/// A function to update the state data when given a value from an result.
/// The input result.