From 7b3b3627957404fe9083268929dd5589f7a26d1b Mon Sep 17 00:00:00 2001 From: Hao Kung Date: Mon, 13 Jun 2016 14:05:52 -0700 Subject: [PATCH] Fix doc comments --- .../IdentityUser.cs | 2 +- .../IdentityUserClaim.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Microsoft.AspNetCore.Identity.EntityFrameworkCore/IdentityUser.cs b/src/Microsoft.AspNetCore.Identity.EntityFrameworkCore/IdentityUser.cs index 2341b8a0cb..c8c396dcd7 100644 --- a/src/Microsoft.AspNetCore.Identity.EntityFrameworkCore/IdentityUser.cs +++ b/src/Microsoft.AspNetCore.Identity.EntityFrameworkCore/IdentityUser.cs @@ -67,8 +67,8 @@ namespace Microsoft.AspNetCore.Identity.EntityFrameworkCore } /// - /// /// Gets or sets the primary key for this user. + /// public virtual TKey Id { get; set; } /// diff --git a/src/Microsoft.AspNetCore.Identity.EntityFrameworkCore/IdentityUserClaim.cs b/src/Microsoft.AspNetCore.Identity.EntityFrameworkCore/IdentityUserClaim.cs index 2edeb6b33d..823a1a4969 100644 --- a/src/Microsoft.AspNetCore.Identity.EntityFrameworkCore/IdentityUserClaim.cs +++ b/src/Microsoft.AspNetCore.Identity.EntityFrameworkCore/IdentityUserClaim.cs @@ -18,7 +18,7 @@ namespace Microsoft.AspNetCore.Identity.EntityFrameworkCore public virtual int Id { get; set; } /// - /// Gets or sets the of the primary key of the user associated with this claim. + /// Gets or sets the primary key of the user associated with this claim. /// public virtual TKey UserId { get; set; }