diff --git a/src/Umbraco.Web/IPublishedContentQuery.cs b/src/Umbraco.Web/IPublishedContentQuery.cs
index c3a065b9dc..76e7be5e97 100644
--- a/src/Umbraco.Web/IPublishedContentQuery.cs
+++ b/src/Umbraco.Web/IPublishedContentQuery.cs
@@ -40,6 +40,7 @@ namespace Umbraco.Web
/// Optional index name.
///
/// When the is not specified, all cultures are searched.
+ /// While enumerating results, the ambient culture is changed to be the searched culture.
///
IEnumerable Search(string term, string culture = null, string indexName = null);
@@ -54,17 +55,24 @@ namespace Umbraco.Web
/// Optional index name.
///
/// When the is not specified, all cultures are searched.
+ /// While enumerating results, the ambient culture is changed to be the searched culture.
///
IEnumerable Search(string term, int skip, int take, out long totalRecords, string culture = null, string indexName = null);
///
/// Executes the query and converts the results to PublishedSearchResult.
///
+ ///
+ /// While enumerating results, the ambient culture is changed to be the searched culture.
+ ///
IEnumerable Search(IQueryExecutor query);
///
/// Executes the query and converts the results to PublishedSearchResult.
///
+ ///
+ /// While enumerating results, the ambient culture is changed to be the searched culture.
+ ///
IEnumerable Search(IQueryExecutor query, int skip, int take, out long totalRecords);
}
}