diff --git a/src/Compilers/Core/Portable/Compilation/Compilation.cs b/src/Compilers/Core/Portable/Compilation/Compilation.cs index 60c9045bfdcf01975ec66975999b22eb56b4e9f1..77b6a09173e2d21b7548d4e72dee91da5a31723f 100644 --- a/src/Compilers/Core/Portable/Compilation/Compilation.cs +++ b/src/Compilers/Core/Portable/Compilation/Compilation.cs @@ -2909,13 +2909,13 @@ internal string GetMessage(ITypeSymbol source, ITypeSymbol destination) /// /// Return true if there is a source declaration symbol name that matches the provided name. - /// This will be faster than + /// This may be faster than /// when predicate is just a simple string check. /// internal abstract bool ContainsSymbolsWithName(string name, SymbolFilter filter = SymbolFilter.TypeAndMember, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Return source declaration symbols whose name matches the provided name. This will be + /// Return source declaration symbols whose name matches the provided name. This may be /// faster than /// when predicate is just a simple string check. ///