diff --git a/src/EditorFeatures/Core/EditorFeaturesResources.Designer.cs b/src/EditorFeatures/Core/EditorFeaturesResources.Designer.cs index 763fa726c29aa5d65107c510aa600a662a1791b3..b45753a94adef3e167de0524cf523986ece865cf 100644 --- a/src/EditorFeatures/Core/EditorFeaturesResources.Designer.cs +++ b/src/EditorFeatures/Core/EditorFeaturesResources.Designer.cs @@ -1196,20 +1196,20 @@ internal class EditorFeaturesResources { } /// - /// Looks up a localized string similar to Intellisense. + /// Looks up a localized string similar to IntelliSense. /// - internal static string Intellisense { + internal static string IntelliSense { get { - return ResourceManager.GetString("Intellisense", resourceCulture); + return ResourceManager.GetString("IntelliSense", resourceCulture); } } /// - /// Looks up a localized string similar to Intellisense Commit Formatting. + /// Looks up a localized string similar to IntelliSense Commit Formatting. /// - internal static string IntellisenseCommitFormatting { + internal static string IntelliSenseCommitFormatting { get { - return ResourceManager.GetString("IntellisenseCommitFormatting", resourceCulture); + return ResourceManager.GetString("IntelliSenseCommitFormatting", resourceCulture); } } diff --git a/src/EditorFeatures/Core/EditorFeaturesResources.resx b/src/EditorFeatures/Core/EditorFeaturesResources.resx index 91ea64f271f3939f3b289941e282b1d32463281e..66d43a70cdf2017e28536237dc14318abe06b40b 100644 --- a/src/EditorFeatures/Core/EditorFeaturesResources.resx +++ b/src/EditorFeatures/Core/EditorFeaturesResources.resx @@ -697,11 +697,11 @@ Do you want to proceed? Preview changes - - Intellisense + + IntelliSense - - Intellisense Commit Formatting + + IntelliSense Commit Formatting Rename Tracking diff --git a/src/EditorFeatures/Core/Implementation/IntelliSense/Completion/Controller_Commit.cs b/src/EditorFeatures/Core/Implementation/IntelliSense/Completion/Controller_Commit.cs index 038d111c8388b22d1921bdfcbe41ba10b4e458dd..de81b75cdad0356f4a91ed48cb84999af663a18c 100644 --- a/src/EditorFeatures/Core/Implementation/IntelliSense/Completion/Controller_Commit.cs +++ b/src/EditorFeatures/Core/Implementation/IntelliSense/Completion/Controller_Commit.cs @@ -37,7 +37,7 @@ private void Commit(CompletionItem item, TextChange textChange, Model model, cha // NOTE(cyrusn): It is intentional that we get the undo history for the // surface buffer and not the subject buffer. - using (var transaction = _undoHistoryRegistry.GetHistory(this.TextView.TextBuffer).CreateTransaction(EditorFeaturesResources.Intellisense)) + using (var transaction = _undoHistoryRegistry.GetHistory(this.TextView.TextBuffer).CreateTransaction(EditorFeaturesResources.IntelliSense)) { // We want to merge with any of our other programmatic edits (e.g. automatic brace completion) transaction.MergePolicy = AutomaticCodeChangeMergePolicy.Instance; @@ -128,7 +128,7 @@ private void Commit(CompletionItem item, TextChange textChange, Model model, cha { // Formatting the completion item affected span is done as a separate transaction because this gives the user // the flexibility to undo the formatting but retain the changes associated with the completion item - using (var formattingTransaction = _undoHistoryRegistry.GetHistory(this.TextView.TextBuffer).CreateTransaction(EditorFeaturesResources.IntellisenseCommitFormatting)) + using (var formattingTransaction = _undoHistoryRegistry.GetHistory(this.TextView.TextBuffer).CreateTransaction(EditorFeaturesResources.IntelliSenseCommitFormatting)) { var changes = formattingService.GetFormattingChangesAsync(document, textChange.Span, CancellationToken.None).WaitAndGetResult(CancellationToken.None); document.Project.Solution.Workspace.ApplyTextChanges(document.Id, changes, CancellationToken.None);