Rename format_manchester/ManchesterFormatted to "[sS]ymbols".

This commit is contained in:
Jared Boone 2016-05-30 11:24:59 -07:00
parent 3d22222689
commit a52d0fbd81
6 changed files with 9 additions and 9 deletions

View file

@ -58,12 +58,12 @@ T operator|(const T& l, const DecodedSymbol& r) {
return l | r.value;
}
struct ManchesterFormatted {
struct FormattedSymbols {
const std::string data;
const std::string errors;
};
ManchesterFormatted format_manchester(
FormattedSymbols format_symbols(
const ManchesterDecoder& decoder
);