Skip to content

Commit e717814

Browse files
committed
chore: Manually fix comments after rebase
1 parent 37e6703 commit e717814

File tree

2 files changed

+1
-8
lines changed

2 files changed

+1
-8
lines changed

sdk/src/Services/DynamoDBv2/Custom/DataModel/_async/IDynamoDBContext.Async.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -192,8 +192,6 @@ partial interface IDynamoDBContext
192192
/// Loads an object from DynamoDB for the given hash-and-range primary key.
193193
/// </summary>
194194
/// <remarks>
195-
/// This invokes DynamoDB's GetItem operation, which returns an item with the given primary key.
196-
197195
/// The type must be marked up with <see cref="DynamoDBTableAttribute" /> and at least
198196
/// one public field/property with <see cref="DynamoDBHashKeyAttribute" />.
199197
/// </remarks>

sdk/src/Services/DynamoDBv2/Custom/DataModel/_bcl/IDynamoDBContext.Sync.cs

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -187,12 +187,7 @@ partial interface IDynamoDBContext
187187
/// <param name="keyObject">A partially-specified instance, where the
188188
/// hash/range properties are equal to the key of the item you
189189
/// want to load.
190-
///
191-
/// The type must be marked up with <see cref="DynamoDBTableAttribute" /> and at least
192-
/// one public field/property with <see cref="DynamoDBHashKeyAttribute" />.
193-
/// </summary>
194-
/// <typeparam name="T">Type to populate.</typeparam>
195-
/// <param name="keyObject">Key object defining the the target item.</param>
190+
/// </param>
196191
/// <returns>
197192
/// Object of type T, populated with properties of item loaded from DynamoDB.
198193
/// </returns>

0 commit comments

Comments
 (0)