p0nce / binrange

Utility functions to parse/emit on a range of bytes.
The Unlicense
3 stars 1 forks source link

Example typo #1

Closed o3o closed 9 years ago

o3o commented 9 years ago

First of all thank you for your code.

So, maybe on Readme Usage:

ubyte[] arr;
auto app = appender(arr2);
writeBE!float(app, 1.2f);

should be:

ubyte[] arr2; //<-- typo
auto app = appender(arr2);
writeBE!float(app, 1.2f);
p0nce commented 9 years ago

Thanks for lending an eye! Will fix this this evening.