Skip to content

Commit 7e5bac3

Browse files
authored
Merge pull request #891 from r3m0t/patch-1
docs/extensibility -- fix typo
2 parents a8e4018 + 0329afa commit 7e5bac3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/extensibility/inside-the-editor.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ The editor is composed of a number of different subsystems, which are designed t
5454

5555
The text model subsystem is free of user interface (UI) concepts. For example, it is not responsible for text formatting or text layout, and it has no knowledge of visual adornments that may be associated with the text.
5656

57-
The public types of the text model subsystem are contained in Microsoft.VisualStudio.Text.Data.dll and Microsoft.VisualStudio.CoreUtilitiy.dll, which depend only on the .NET Framework base class library and the Managed Extensibility Framework (MEF).
57+
The public types of the text model subsystem are contained in Microsoft.VisualStudio.Text.Data.dll and Microsoft.VisualStudio.CoreUtility.dll, which depend only on the .NET Framework base class library and the Managed Extensibility Framework (MEF).
5858

5959
### Text View Subsystem
6060
The text view subsystem is responsible for formatting and displaying text. The types in this subsystem are divided into two layers, depending on whether the types rely on Windows Presentation Foundation (WPF). The most important types are <xref:Microsoft.VisualStudio.Text.Editor.ITextView> and <xref:Microsoft.VisualStudio.Text.Editor.IWpfTextView>, which control the set of text lines that are to be displayed, and also the caret, the selection, and the facilities for adorning the text by using WPF UI elements. This subsystem also provides margins around the text display area. These margins can be extended, and can contain different kinds of content and visual effects. Examples of margins are line number displays and scroll bars.
@@ -284,4 +284,4 @@ P: ABCDEvwxyz
284284

285285
## See Also
286286
[Language Service and Editor Extension Points](../extensibility/language-service-and-editor-extension-points.md)
287-
[Editor Imports](../extensibility/editor-imports.md)
287+
[Editor Imports](../extensibility/editor-imports.md)

0 commit comments

Comments
 (0)