Skip to content

Commit

Permalink
Fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
igorocampos committed Jan 23, 2024
1 parent 0f78788 commit 51d44e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ESCPOS_NET/Emitters/BaseCommandEmitter/PrintCommands.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public abstract partial class BaseCommandEmitter : ICommandEmitter
/* Printing Commands */
public virtual byte[] Print(string data)
{
// Fix OSX or Windows-style newliness
// Fix OSX or Windows-style newlines
data = Regex.Replace(data, @"\r\n|\r", "\n");

if (Encoding is null)
Expand Down

0 comments on commit 51d44e0

Please sign in to comment.