Skip to content

Commit 7fe8e74

Browse files
committed
Fixed wrong comments.
1 parent 69a3d4c commit 7fe8e74

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

Diff for: libraries/Wire/src/TwoWireBuffers.h

+1-3
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@
1515
You should have received a copy of the GNU Lesser General Public
1616
License along with this library; if not, write to the Free Software
1717
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18-
19-
Modified 2020 by Greyson Christoforo ([email protected]) to implement timeouts
2018
*/
2119

2220
#pragma once
@@ -30,7 +28,7 @@
3028

3129
namespace TwoWireBuffers {
3230

33-
/* Template class that implements an compile time fixed size array. */
31+
/* Template class that implements a compile time fixed size array. */
3432
template<unsigned CAPACITY>
3533
class StaticBuffer {
3634
uint8_t mByteArray[CAPACITY];

Diff for: libraries/Wire/src/Wire.h

-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
Modified 2020 by Greyson Christoforo ([email protected]) to implement timeouts
2121
*/
2222

23-
2423
#pragma once
2524

2625
#ifndef TwoWire_h
@@ -88,7 +87,6 @@ class TwoWire : public Stream
8887
return requestFrom(static_cast<uint8_t>(address), static_cast<uint8_t>(quantity)
8988
, static_cast<uint8_t>(sendStop));
9089
}
91-
9290
virtual size_t write(uint8_t) override;
9391
virtual size_t write(const uint8_t *, size_t) override;
9492
virtual int available(void) override;

0 commit comments

Comments
 (0)