Skip to content

Commit

Permalink
comments(adt): removing inaccurate comment (Azure#12474)
Browse files Browse the repository at this point in the history
  • Loading branch information
David R. Williamson authored Jun 3, 2020
1 parent f717d8d commit 66c3567
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,6 @@ public virtual Response<string> GetDigitalTwin(string digitalTwinId, Cancellatio
/// <param name="digitalTwin">The application/json digital twin to create.</param>
/// <param name="cancellationToken">The cancellation token.</param>
/// <returns>The created application/json digital twin and the http response.</returns>
/// <remarks>The digital twin must be the serialization of an instance of <see cref="Serialization.BasicDigitalTwin"/> or the serialization of an extension of that type.</remarks>
/// <example>
/// <code snippet="Snippet:DigitalTwinsSampleCreateCustomTwin">
/// string customDtId = await GetUniqueTwinIdAsync(SamplesConstants.TemporaryTwinPrefix, DigitalTwinsClient).ConfigureAwait(false);
Expand Down Expand Up @@ -203,7 +202,6 @@ public virtual Task<Response<string>> CreateDigitalTwinAsync(string digitalTwinI
/// <param name="digitalTwin">The application/json digital twin to create.</param>
/// <param name="cancellationToken">The cancellation token.</param>
/// <returns>The created application/json digital twin and the http response.</returns>
/// <remarks>The digital twin must be the serialization of an instance of <see cref="Serialization.BasicDigitalTwin"/> or the serialization of an extension of that type.</remarks>
public virtual Response<string> CreateDigitalTwin(string digitalTwinId, string digitalTwin, CancellationToken cancellationToken = default)
{
return _dtRestClient.Add(digitalTwinId, digitalTwin, cancellationToken);
Expand Down

0 comments on commit 66c3567

Please sign in to comment.