From 1e461ce5fb89a4548271b792276562d82909adf2 Mon Sep 17 00:00:00 2001
From: Bradley Luke Totaro <brad@gothamanalytics.net>
Date: Tue, 5 Apr 2016 15:10:46 -0400
Subject: [PATCH] Update SoftwareSerial.cpp

---
 .../arduino/avr/libraries/SoftwareSerial/src/SoftwareSerial.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/hardware/arduino/avr/libraries/SoftwareSerial/src/SoftwareSerial.cpp b/hardware/arduino/avr/libraries/SoftwareSerial/src/SoftwareSerial.cpp
index 376762e75c8..474fe4a214b 100644
--- a/hardware/arduino/avr/libraries/SoftwareSerial/src/SoftwareSerial.cpp
+++ b/hardware/arduino/avr/libraries/SoftwareSerial/src/SoftwareSerial.cpp
@@ -270,7 +270,7 @@ void SoftwareSerial::setTX(uint8_t tx)
 {
   // First write, then set output. If we do this the other way around,
   // the pin would be output low for a short while before switching to
-  // output hihg. Now, it is input with pullup for a short while, which
+  // output high. Now, it is input with pullup for a short while, which
   // is fine. With inverse logic, either order is fine.
   digitalWrite(tx, _inverse_logic ? LOW : HIGH);
   pinMode(tx, OUTPUT);