Skip to content

Commit

Permalink
fix: comment typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Ben Leadbetter committed Jan 19, 2025
1 parent 9d59452 commit 3537b05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/flex_data/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ match message {
// string properties of flex_data messages carrying string data
// can be read as a std::string::String (std feature enabled)
println!("Name {:?}", m.name());
// or as an iterator over the utf-8 bytes (no_std freindly)
// or as an iterator over the utf-8 bytes (no_std friendly)
println!("Name bytes {:?}", m.name_bytes().collect::<Vec<u8>>());
}
FlexData::SetKeySignature(m) => println!("Set Key Signature {:?}", m.data()),
Expand Down

0 comments on commit 3537b05

Please sign in to comment.