From 716cae5328f5e8dd1f6eb903ca58988869d64962 Mon Sep 17 00:00:00 2001 From: Yorick Kuijs Date: Wed, 24 Mar 2021 12:33:15 +0100 Subject: [PATCH] Corrected typo --- .../MSFT_SPSearchResultSource.schema.mof | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SharePointDsc/DSCResources/MSFT_SPSearchResultSource/MSFT_SPSearchResultSource.schema.mof b/SharePointDsc/DSCResources/MSFT_SPSearchResultSource/MSFT_SPSearchResultSource.schema.mof index a724a89b3..51d9e4837 100644 --- a/SharePointDsc/DSCResources/MSFT_SPSearchResultSource/MSFT_SPSearchResultSource.schema.mof +++ b/SharePointDsc/DSCResources/MSFT_SPSearchResultSource/MSFT_SPSearchResultSource.schema.mof @@ -3,7 +3,7 @@ class MSFT_SPSearchResultSource : OMI_BaseResource { [Key, Description("The name of the result source")] String Name; [Key, Description("The scope at which the Result Source will be created. Options are SSA, SPSite or SPWeb"), ValueMap{"SSA","SPSite","SPWeb"}, Values{"SSA","SPSite","SPWeb"}] String ScopeName; - [Key, Description("The URI of the site where to create the result source. Use 'Global' is ScopeName is SSA")] String ScopeUrl; + [Key, Description("The URI of the site where to create the result source. Use 'Global' if ScopeName is SSA")] String ScopeUrl; [Required, Description("The name of the search service application to associate this result source with")] String SearchServiceAppName; [Required, Description("The query to pass to the provider source")] String Query; [Required, Description("The provider type to use for the result source")] String ProviderType;