Skip to content

Commit

Permalink
chore(docs): Fix typos in queue and stack documentation (#2213)
Browse files Browse the repository at this point in the history
  • Loading branch information
r9dtech authored Dec 3, 2024
1 parent d9dd274 commit d557923
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion stdlib/queue.gr
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ abstract record Queue<a> {
/**
* 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
Expand Down
2 changes: 1 addition & 1 deletion stdlib/queue.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ make : (?size: Number) => Queue<a>

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:
Expand Down
2 changes: 1 addition & 1 deletion stdlib/stack.gr
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ abstract record Stack<a> {
/**
* 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
Expand Down
2 changes: 1 addition & 1 deletion stdlib/stack.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ make : (?size: Number) => Stack<a>

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:
Expand Down

0 comments on commit d557923

Please sign in to comment.