Skip to content

Commit

Permalink
Fix case spelling error in ArrayList.c.
Browse files Browse the repository at this point in the history
  • Loading branch information
scottcgi committed Feb 22, 2021
1 parent 2142997 commit 4d3f743
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## Developing

* Fix case spelling error in `ArrayList.c`.


## v0.6.4

_`2021.2.19 UTC+8 00:27`_
Expand Down
4 changes: 2 additions & 2 deletions Engine/Toolkit/Utils/ArrayList.c
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ static ArrayList* Create(int elementTypeSize)
}


static void init(int elementTypeSize, ArrayList* outArrayList)
static void Init(int elementTypeSize, ArrayList* outArrayList)
{
InitArrayList(elementTypeSize, outArrayList);
}
Expand Down Expand Up @@ -348,7 +348,7 @@ static void InitWithCapacity(int elementTypeSize, int capacity, ArrayList* outAr
struct AArrayList AArrayList[1] =
{{
Create,
init,
Init,
CreateWithSize,
InitWithSize,
CreateWithCapacity,
Expand Down

0 comments on commit 4d3f743

Please sign in to comment.