Skip to content

Commit

Permalink
#36 LookQuery.Query() shortcut made public
Browse files Browse the repository at this point in the history
  • Loading branch information
Hendy committed Dec 8, 2018
1 parent ae1145d commit 2515727
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Our.Umbraco.Look/Models/LookQuery.cs
Original file line number Diff line number Diff line change
Expand Up @@ -160,10 +160,10 @@ public void ApplyFacet(Facet facet)
}

/// <summary>
/// Perform the query - this does the same thing as LookService.Query(this)
/// Perform the query - this is a shortcut to and does the same thing as LookService.Query(this)
/// </summary>
/// <returns></returns>
internal LookResult Query()
public LookResult Query()
{
return LookService.Query(this);
}
Expand Down

0 comments on commit 2515727

Please sign in to comment.