Skip to content

Commit e37ef75

Browse files
authored
typo (#18413)
1 parent f4b677e commit e37ef75

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

vsintegration/src/FSharp.Editor/Common/Extensions.fs

+3-3
Original file line numberDiff line numberDiff line change
@@ -97,10 +97,10 @@ type ConnectionPointSubscription = System.IDisposable option
9797

9898
// Usage example:
9999
// If a handler is None, to not handle that event
100-
// let subscription = subscribeToTextViewEvents (textView, onChangeCaretHandler, onKillFocus, OnSetFocus)
100+
// let subscription = subscribeToTextViewEvents (textView, onChangeCaretHandler, onKillFocus, onSetFocus)
101101
// Unsubscribe using subscription.Dispose()
102-
let subscribeToTextViewEvents (textView: IVsTextView, onChangeCaretHandler, onKillFocus, OnSetFocus) : ConnectionPointSubscription =
103-
let handler = TextViewEventsHandler(onChangeCaretHandler, onKillFocus, OnSetFocus)
102+
let subscribeToTextViewEvents (textView: IVsTextView, onChangeCaretHandler, onKillFocus, onSetFocus) : ConnectionPointSubscription =
103+
let handler = TextViewEventsHandler(onChangeCaretHandler, onKillFocus, onSetFocus)
104104

105105
match textView with
106106
| :? IConnectionPointContainer as cpContainer ->

0 commit comments

Comments
 (0)