diff --git a/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFileProvider.cs b/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFileProvider.cs
index c65ff8f1287cfb..b9faf2ac1a9071 100644
--- a/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFileProvider.cs
+++ b/src/libraries/Microsoft.Extensions.FileProviders.Physical/src/PhysicalFileProvider.cs
@@ -340,7 +340,7 @@ public IDirectoryContents GetDirectoryContents(string subpath)
///
/// Creates a for the specified .
- /// Globbing patterns are interpreted by .
+ /// Globbing patterns are interpreted by .
///
///
/// Filter string used to determine what files or folders to monitor. Example: **/*.cs, *.*,
@@ -350,7 +350,7 @@ public IDirectoryContents GetDirectoryContents(string subpath)
/// An that is notified when a file matching is added,
/// modified, or deleted. Returns a if has invalid filter
/// characters or if is an absolute path or outside the root directory specified in the
- /// constructor .
+ /// constructor .
///
public IChangeToken Watch(string filter)
{
diff --git a/src/libraries/System.Linq.AsyncEnumerable/src/System/Linq/AllAsync.cs b/src/libraries/System.Linq.AsyncEnumerable/src/System/Linq/AllAsync.cs
index 02c5f82a7e0b92..c4d7f16b82106f 100644
--- a/src/libraries/System.Linq.AsyncEnumerable/src/System/Linq/AllAsync.cs
+++ b/src/libraries/System.Linq.AsyncEnumerable/src/System/Linq/AllAsync.cs
@@ -16,8 +16,8 @@ public static partial class AsyncEnumerable
/// A function to test each element for a condition.
/// The to monitor for cancellation requests. The default is .
///
- /// true if every element of the source sequence passes the test in the specified predicate,
- /// or if the sequence is empty; otherwise, false.
+ /// if every element of the source sequence passes the test in the specified predicate,
+ /// or if the sequence is empty; otherwise, .
///
/// is .
/// is .
@@ -53,8 +53,8 @@ static async ValueTask Impl(
/// A function to test each element for a condition.
/// The to monitor for cancellation requests. The default is .
///
- /// true if every element of the source sequence passes the test in the specified predicate,
- /// or if the sequence is empty; otherwise, false.
+ /// if every element of the source sequence passes the test in the specified predicate,
+ /// or if the sequence is empty; otherwise, .
///
/// is .
/// is .
diff --git a/src/libraries/System.Linq.AsyncEnumerable/src/System/Linq/AnyAsync.cs b/src/libraries/System.Linq.AsyncEnumerable/src/System/Linq/AnyAsync.cs
index 863b1ee2bbfa44..c0ac41da688c43 100644
--- a/src/libraries/System.Linq.AsyncEnumerable/src/System/Linq/AnyAsync.cs
+++ b/src/libraries/System.Linq.AsyncEnumerable/src/System/Linq/AnyAsync.cs
@@ -14,7 +14,7 @@ public static partial class AsyncEnumerable
/// The type of the elements of source.
/// The to check for emptiness.
/// The to monitor for cancellation requests. The default is .
- /// true if the source sequence contains any elements; otherwise, false.
+ /// if the source sequence contains any elements; otherwise, .
/// is .
public static ValueTask AnyAsync(
this IAsyncEnumerable source,
@@ -46,8 +46,8 @@ static async ValueTask Impl(
/// A function to test each element for a condition.
/// The to monitor for cancellation requests. The default is .
///
- /// true if the source sequence is not empty and at least one of its elements passes
- /// the test in the specified predicate; otherwise, false.
+ /// if the source sequence is not empty and at least one of its elements passes
+ /// the test in the specified predicate; otherwise, .
///
/// is .
/// is .
@@ -83,8 +83,8 @@ static async ValueTask Impl(
/// A function to test each element for a condition.
/// The to monitor for cancellation requests. The default is .
///
- /// true if the source sequence is not empty and at least one of its elements passes
- /// the test in the specified predicate; otherwise, false.
+ /// if the source sequence is not empty and at least one of its elements passes
+ /// the test in the specified predicate; otherwise, .
///
/// is .
/// is .
diff --git a/src/libraries/System.Linq.AsyncEnumerable/src/System/Linq/ContainsAsync.cs b/src/libraries/System.Linq.AsyncEnumerable/src/System/Linq/ContainsAsync.cs
index 49d9cee96b2041..e6627dab8d7e35 100644
--- a/src/libraries/System.Linq.AsyncEnumerable/src/System/Linq/ContainsAsync.cs
+++ b/src/libraries/System.Linq.AsyncEnumerable/src/System/Linq/ContainsAsync.cs
@@ -16,7 +16,7 @@ public static partial class AsyncEnumerable
/// The value to locate in the sequence.
/// An equality comparer to compare values.
/// The to monitor for cancellation requests. The default is .
- /// true if the source sequence contains an element that has the specified value; otherwise, false.
+ /// if the source sequence contains an element that has the specified value; otherwise, .
/// is .
public static ValueTask ContainsAsync(
this IAsyncEnumerable source,
diff --git a/src/libraries/System.Linq.AsyncEnumerable/src/System/Linq/SequenceEqualAsync.cs b/src/libraries/System.Linq.AsyncEnumerable/src/System/Linq/SequenceEqualAsync.cs
index 9deabee066b73f..7315077bed25bf 100644
--- a/src/libraries/System.Linq.AsyncEnumerable/src/System/Linq/SequenceEqualAsync.cs
+++ b/src/libraries/System.Linq.AsyncEnumerable/src/System/Linq/SequenceEqualAsync.cs
@@ -16,8 +16,8 @@ public static partial class AsyncEnumerable
/// An to use to compare elements.
/// The to monitor for cancellation requests. The default is .
///
- /// true if the two source sequences are of equal length and their corresponding
- /// elements compare equal according to comparer; otherwise, false.
+ /// if the two source sequences are of equal length and their corresponding
+ /// elements compare equal according to comparer; otherwise, .
///
public static ValueTask SequenceEqualAsync(
this IAsyncEnumerable first,