Rename return object for the filter function

This commit is contained in:
Mark Banner 2024-09-12 09:42:14 +01:00
Родитель 9b0e838e65
Коммит b52165efa0
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -115,7 +115,7 @@ dictionary SearchEngineDefinition {
* Details of the search engines to display to the user, generated as a result
* of processing the search configuration.
*/
dictionary FilteredSearchEngines {
dictionary RefinedConfig {
/// A list of engines, with the default engine first, and the rest in the
/// order defined by the configuration.
sequence<SearchEngineDefinition> engines;
@ -199,7 +199,7 @@ interface SearchEngineSelector {
/// and returns the set of engines and parameters that should be presented
/// to the user.
[Throws=SearchApiError]
FilteredSearchEngines filter_engine_configuration(
RefinedConfig filter_engine_configuration(
SearchUserEnvironment user_environment
);