From 211cf049b94c278836ef57ac794dc990b71aad2e Mon Sep 17 00:00:00 2001
From: Colt <6819362+cabauman@users.noreply.github.com>
Date: Tue, 4 Aug 2020 12:15:45 +0900
Subject: [PATCH] Fix misleading interface documentation
---
src/ReactiveUI/Interfaces/IViewLocator.cs | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/src/ReactiveUI/Interfaces/IViewLocator.cs b/src/ReactiveUI/Interfaces/IViewLocator.cs
index 30ecb65193..d5e06c411a 100644
--- a/src/ReactiveUI/Interfaces/IViewLocator.cs
+++ b/src/ReactiveUI/Interfaces/IViewLocator.cs
@@ -17,10 +17,9 @@ public interface IViewLocator : IEnableLogger
/// Determines the view for an associated ViewModel.
///
/// The view model type.
- /// The view, with the ViewModel property assigned to
- /// viewModel.
/// View model.
/// Contract.
+ /// The view associated with the given view model.
IViewFor? ResolveView(T viewModel, string? contract = null);
}
}