[Bug Fix] Doors::GetSize() Perl Croak Typo. (#2027)

- Typo was causing GetIncline() to show twice on Spire and causing GetSize() not to show at all on Spire.
This commit is contained in:
Kinglykrab
2022-03-03 21:54:02 -05:00
committed by GitHub
parent 6dffeacc6e
commit 2dfb7614cc
+1 -1
View File
@@ -233,7 +233,7 @@ XS(XS_Doors_GetSize); /* prototype to pass -Wmissing-prototypes */
XS(XS_Doors_GetSize) {
dXSARGS;
if (items != 1)
Perl_croak(aTHX_ "Usage: Doors::GetIncline(THIS)");
Perl_croak(aTHX_ "Usage: Doors::GetSize(THIS)"); // @categories Doors
{
Doors *THIS;
uint32 RETVAL;