Skip to content

Commit 1797701

Browse files
committed
updated copyright year
1 parent 2367953 commit 1797701

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

build/Package.nuspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
Look sits on top of Umbraco Examine adding support for: tag faceting, geospatial querying and text match highlighting.
1414
</description>
1515
<releaseNotes></releaseNotes>
16-
<copyright>Copyright 2018</copyright>
16+
<copyright>Copyright 2019</copyright>
1717
<tags>Umbraco</tags>
1818
<dependencies>
1919
<dependency id="UmbracoCms.Core" version="7.3.0" />

src/Our.Umbraco.Look/LookConstants.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ internal static class LookConstants
7878
internal static string HasTagsField => "Look_HasTags";
7979

8080
/// <summary>
81-
/// Single field used to store 'group & name' for each tag, so can get all tags without first testing for field names prefixed with x / maintaining a memory state cache
81+
/// Single field used to store 'group and name' for each tag, so can get all tags without first testing for field names prefixed with x / maintaining a memory state cache
8282
/// </summary>
8383
internal static string AllTagsField => "Look_AllTags";
8484

src/Our.Umbraco.Look/Models/NodeQuery.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ public NodeQuery(PublishedItemType type)
5656
/// <summary>
5757
/// Create new NodeQuery search critera (specifying a culture implies that the PublishedItemType will be Content)
5858
/// </summary>
59-
/// <param name="culture"></param>
59+
/// <param name="cultureInfo"></param>
6060
public NodeQuery(CultureInfo cultureInfo)
6161
{
6262
this.Cultures = new CultureInfo[] { cultureInfo };

src/Our.Umbraco.Look/Services/LookService.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public partial class LookService
6060
private List<CartesianTierPlotter> CartesianTierPlotters { get; } = new List<CartesianTierPlotter>();
6161

6262
/// <summary>
63-
/// Max distance in miles for distance searches & location indexing
63+
/// Max distance in miles for distance searches and location indexing
6464
/// </summary>
6565
private static double MaxDistance => 10000; // 12450 = half circumfrence of earth TODO: make configuration
6666

src/Our.Umbraco.Look/Services/LookService_Initialize.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ namespace Our.Umbraco.Look
1111
public partial class LookService
1212
{
1313
/// <summary>
14-
/// Initialize the look service - it caches reference to all lucene folders & sets up CartesianTierPlotters
14+
/// Initialize the look service - it caches reference to all lucene folders and sets up CartesianTierPlotters
1515
/// </summary>
1616
internal static void Initialize(UmbracoHelper umbracoHelper)
1717
{

0 commit comments

Comments
 (0)