diff --git a/README.md b/README.md index 0c5a543..f01e4be 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ impl<'a> nolife::Family<'a> for MyParsedDataFamily { // 2. Define a function that setups the data and its borrowed representation: fn my_scope( data_source: Vec, // 👈 all parameters that allow to build a `MyData` -) -> impl nolife::TopScope // 👈 use the helper type we declared +) -> impl nolife::TopScope // 👈 use the helper type we declared { nolife::scope!({ let mut data = MyData(data_source);