diff --git a/subjects/delete_prefix/README.md b/subjects/delete_prefix/README.md index 76b4faa5e..b082825e2 100644 --- a/subjects/delete_prefix/README.md +++ b/subjects/delete_prefix/README.md @@ -2,7 +2,7 @@ ### Instructions -Define the function `delete_prefix(prefix, s)` which returns the string slice `s` with the `prefix` removed wrapped in `Some`. If `prefix ` is not contained in `s` it returns `None`. +Define the function `delete_prefix(prefix, s)` which returns the string slice `s` with the `prefix` removed wrapped in `Some`. If `prefix ` is not a prefix of `s` it returns `None`. ### Expected Function diff --git a/subjects/lalgebra_vector/README.md b/subjects/lalgebra_vector/README.md index b864f49de..bf153eb0f 100644 --- a/subjects/lalgebra_vector/README.md +++ b/subjects/lalgebra_vector/README.md @@ -4,7 +4,7 @@ A vector in linear algebra is defined as "anything that can be added and that can be multiplied by a scalar" -And the associated function dot that calculates the dot product between two vectors +Define the associated function `dot` that calculates the dot product between two vectors The dot product between two vectors of different length it's not defined