Skip to content

Commit 11bc7d1

Browse files
committed
Documentation
1 parent b6a7f97 commit 11bc7d1

21 files changed

+509
-14
lines changed

System.IO.Abstractions.Analyzers/Analyzers/FileSystemTypeAnalyzers/DirectoryAnalyzer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public class DirectoryAnalyzer : BaseFileSystemNodeAnalyzer
1818
/// <summary>
1919
/// Diagnostic Title
2020
/// </summary>
21-
private const string Title = "Replace Directory class with IFileSystem.Directory for improved testablity";
21+
private const string Title = "Replace Directory class with IFileSystem.Directory for improved testability";
2222

2323
/// <summary>
2424
/// Diagnostic Message Format

System.IO.Abstractions.Analyzers/Analyzers/FileSystemTypeAnalyzers/DirectoryInfoAnalyzer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public class DirectoryInfoAnalyzer: BaseFileSystemNodeAnalyzer
1818
/// <summary>
1919
/// Diagnostic Title
2020
/// </summary>
21-
private const string Title = "Replace DirectoryInfo class with IFileSystem.DirectoryInfo for improved testablity";
21+
private const string Title = "Replace DirectoryInfo class with IFileSystem.DirectoryInfo for improved testability";
2222

2323
/// <summary>
2424
/// Diagnostic Message Format

System.IO.Abstractions.Analyzers/Analyzers/FileSystemTypeAnalyzers/FileAnalyzer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public class FileAnalyzer : BaseFileSystemNodeAnalyzer
1818
/// <summary>
1919
/// Diagnostic Title
2020
/// </summary>
21-
private const string Title = "Replace File class with IFileSystem.File for improved testablity";
21+
private const string Title = "Replace File class with IFileSystem.File for improved testability";
2222

2323
/// <summary>
2424
/// Diagnostic Message Format

System.IO.Abstractions.Analyzers/Analyzers/FileSystemTypeAnalyzers/FileInfoAnalyzer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public class FileInfoAnalyzer : BaseFileSystemNodeAnalyzer
1818
/// <summary>
1919
/// Diagnostic Title
2020
/// </summary>
21-
private const string Title = "Replace FileInfo class with IFileSystem.FileInfo for improved testablity";
21+
private const string Title = "Replace FileInfo class with IFileSystem.FileInfo for improved testability";
2222

2323
/// <summary>
2424
/// Diagnostic Message Format

System.IO.Abstractions.Analyzers/Analyzers/FileSystemTypeAnalyzers/FileStreamAnalyzer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public class FileStreamAnalyzer : BaseFileSystemNodeAnalyzer
1818
/// <summary>
1919
/// Diagnostic Title
2020
/// </summary>
21-
private const string Title = "Replace FileStream class with IFileSystem.FileStream for improved testablity";
21+
private const string Title = "Replace FileStream class with IFileSystem.FileStream for improved testability";
2222

2323
/// <summary>
2424
/// Diagnostic Message Format

System.IO.Abstractions.Analyzers/Analyzers/FileSystemTypeAnalyzers/PathAnalyzer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public class PathAnalyzer : BaseFileSystemNodeAnalyzer
1818
/// <summary>
1919
/// Diagnostic Title
2020
/// </summary>
21-
private const string Title = "Replace Path class with IFileSystem.Path for improved testablity";
21+
private const string Title = "Replace Path class with IFileSystem.Path for improved testability";
2222

2323
/// <summary>
2424
/// Diagnostic Message Format

System.IO.Abstractions.Analyzers/Analyzers/FileSystemTypeAnalyzers/StringReaderAnalyzer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public class StringReaderAnalyzer : BaseFileSystemNodeAnalyzer
1818
/// <summary>
1919
/// Diagnostic Title
2020
/// </summary>
21-
private const string Title = "Replace StringReader instances with IFileSystem.StringReader factory for improved testablity";
21+
private const string Title = "Replace StringReader instances with IFileSystem.StringReader factory for improved testability";
2222

2323
/// <summary>
2424
/// Diagnostic Message Format

System.IO.Abstractions.Analyzers/Analyzers/FileSystemTypeAnalyzers/StringWriterAnalyzer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public class StringWriterAnalyzer : BaseFileSystemNodeAnalyzer
1818
/// <summary>
1919
/// Diagnostic Title
2020
/// </summary>
21-
private const string Title = "Replace StringWriter class with IFileSystem.StringWriter for improved testablity";
21+
private const string Title = "Replace StringWriter class with IFileSystem.StringWriter for improved testability";
2222

2323
/// <summary>
2424
/// Diagnostic Message Format

System.IO.Abstractions.Analyzers/CodeFixes/DirectoryCodeFix.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ public class DirectoryCodeFix : BaseInvokeCodeFix
1010
{
1111
protected override string DiagnosticId => Constants.Io0003;
1212

13-
protected override string Title => "Use IFileSystem.Directory for improved testablity";
13+
protected override string Title => "Use IFileSystem.Directory for improved testability";
1414
}
1515
}

System.IO.Abstractions.Analyzers/CodeFixes/DirectoryInfoCodeFix.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ namespace System.IO.Abstractions.Analyzers.CodeFixes
1414
[ExportCodeFixProvider(LanguageNames.CSharp, Name = nameof(DirectoryInfoCodeFix))]
1515
public class DirectoryInfoCodeFix : CodeFixProvider
1616
{
17-
private const string Title = "Use IDirectoryInfoFactory instead creation DirectoryInfo for improved testablity";
17+
private const string Title = "Use IDirectoryInfoFactory instead creation DirectoryInfo for improved testability";
1818

1919
public override ImmutableArray<string> FixableDiagnosticIds =>
2020
ImmutableArray.Create(Constants.Io0007);

0 commit comments

Comments
 (0)