Skip to content

Commit

Permalink
docs: fix typo in README
Browse files Browse the repository at this point in the history
  • Loading branch information
bbaldino committed Dec 24, 2024
1 parent e49d474 commit f82c1fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ ones tracked by `Node`.

// Implement the `DataTransformer` trait since we want to change the value.
// Here we're just going to operate on u32s
impl DataObserver<u32> for DataDoubler
impl DataTransformer<u32> for DataDoubler
{
fn transform(&mut self, data: u32) -> Result<T> {
Ok(data * 2)
Expand Down

0 comments on commit f82c1fb

Please sign in to comment.