Skip to content

Commit

Permalink
Merge pull request #515 from worldbeater/patch-1
Browse files Browse the repository at this point in the history
Fix typo
  • Loading branch information
Oren Novotny committed Jul 1, 2018
2 parents 143f3c7 + 61d08dc commit ee7a8f0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -254,13 +254,13 @@ public interface IMeasurementProtocolApi
public class Measurement
{
// Properties can be read-only and [AliasAs] isn't required
public int v { get { return 1; }
public int v { get { return 1; } }

[AliasAs("tid")]
public string WebPropertyId { get; set; }

[AliasAs("cid")]
public Guid ClientId { get;set; }
public Guid ClientId { get; set; }

[AliasAs("t")]
public string Type { get; set; }
Expand Down Expand Up @@ -625,4 +625,4 @@ You can then get the api interface using constructor injection:
return View(thing);
}
}
```
```

0 comments on commit ee7a8f0

Please sign in to comment.