Skip to content
Open
Changes from all commits
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
4 changes: 2 additions & 2 deletions src/PCSC.Reactive/Events/MonitorEvent.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
public abstract class MonitorEvent
{
/// <summary>
/// Name of the smard card reader
/// Name of the smart card reader
/// </summary>
public string ReaderName { get; }

Expand All @@ -18,7 +18,7 @@ public abstract class MonitorEvent
/// <summary>
/// Creates a new monitor event instance
/// </summary>
/// <param name="readerName">Name of the smard card reader</param>
/// <param name="readerName">Name of the smart card reader</param>
/// <param name="atr">The card's ATR</param>
protected MonitorEvent(string readerName, byte[] atr) {
ReaderName = readerName;
Expand Down