Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Spell check
  • Loading branch information
azabbasi committed Jun 17, 2020
commit c374b086b7c8a07c6c0c28c1c27057fcce023b06
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
namespace Azure.Iot.Hub.Service.Samples
{
/// <summary>
/// This sample goes through the lifecycle of a Module Identity of a device
/// This sample goes through the lifecycle of a Module Identity for a device
/// </summary>
internal class ModuleIdentityLifecycleSamples
{
Expand Down Expand Up @@ -63,7 +63,7 @@ public async Task<DeviceIdentity> CreateDeviceIdentityAsync(string deviceId)
{
SampleLogger.PrintHeader("CREATE DEVICE IDENTITY");

// Construt the device identity object.
// Construct the device identity object.
DeviceIdentity deviceIdentity = new DeviceIdentity
{
DeviceId = deviceId
Expand Down Expand Up @@ -96,7 +96,7 @@ public async Task<ModuleIdentity> CreateModuleIdentityAsync(DeviceIdentity devic
{
SampleLogger.PrintHeader("CREATE MODULE IDENTITY");

// Construt the module identity object.
// Construct the module identity object.
ModuleIdentity moduleIdentity = new ModuleIdentity
{
DeviceId = deviceIdentity.DeviceId,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public class Program
/// </summary>
public static async Task Main(string[] args)
{
// Parse and validate paramters
// Parse and validate parameters

CommandLineOptions options = null;
ParserResult<CommandLineOptions> result = Parser.Default.ParseArguments<CommandLineOptions>(args)
Expand Down