diff --git a/stdlib/queue.gr b/stdlib/queue.gr index 0b605f054..7ca187c05 100644 --- a/stdlib/queue.gr +++ b/stdlib/queue.gr @@ -27,7 +27,7 @@ abstract record Queue { /** * Creates a new queue with an initial storage of the given size. As values are * added or removed, the internal storage may grow or shrink. Generally, you - * won’t need to care about the storage size of your map and can use the + * won’t need to care about the storage size of your queue and can use the * default size. * * @param size: The initial storage size of the queue diff --git a/stdlib/queue.md b/stdlib/queue.md index d2dc23c34..236716cbe 100644 --- a/stdlib/queue.md +++ b/stdlib/queue.md @@ -46,7 +46,7 @@ make : (?size: Number) => Queue Creates a new queue with an initial storage of the given size. As values are added or removed, the internal storage may grow or shrink. Generally, you -won’t need to care about the storage size of your map and can use the +won’t need to care about the storage size of your queue and can use the default size. Parameters: diff --git a/stdlib/stack.gr b/stdlib/stack.gr index aeb8d58b3..2c5112de7 100644 --- a/stdlib/stack.gr +++ b/stdlib/stack.gr @@ -25,7 +25,7 @@ abstract record Stack { /** * Creates a new stack with an initial storage of the given size. As values are * added or removed, the internal storage may grow or shrink. Generally, you - * won’t need to care about the storage size of your map and can use the + * won’t need to care about the storage size of your stack and can use the * default size. * * @param size: The initial storage size of the stack diff --git a/stdlib/stack.md b/stdlib/stack.md index 0e5a22a65..145cc55ef 100644 --- a/stdlib/stack.md +++ b/stdlib/stack.md @@ -46,7 +46,7 @@ make : (?size: Number) => Stack Creates a new stack with an initial storage of the given size. As values are added or removed, the internal storage may grow or shrink. Generally, you -won’t need to care about the storage size of your map and can use the +won’t need to care about the storage size of your stack and can use the default size. Parameters: