docs: fix simple typo, paramater -> parameter
There is a small typo in src/cc65/pragma.c. Should read `parameter` rather than `paramater`.
This commit is contained in:
committed by
Oliver Schmidt
parent
c663f64542
commit
2646c06f61
@@ -677,7 +677,7 @@ static void WarnPragma (StrBuf* B)
|
|||||||
|
|
||||||
|
|
||||||
static void FlagPragma (StrBuf* B, IntStack* Stack)
|
static void FlagPragma (StrBuf* B, IntStack* Stack)
|
||||||
/* Handle a pragma that expects a boolean paramater */
|
/* Handle a pragma that expects a boolean parameter */
|
||||||
{
|
{
|
||||||
StrBuf Ident = AUTO_STRBUF_INITIALIZER;
|
StrBuf Ident = AUTO_STRBUF_INITIALIZER;
|
||||||
long Val;
|
long Val;
|
||||||
@@ -727,7 +727,7 @@ ExitPoint:
|
|||||||
|
|
||||||
|
|
||||||
static void IntPragma (StrBuf* B, IntStack* Stack, long Low, long High)
|
static void IntPragma (StrBuf* B, IntStack* Stack, long Low, long High)
|
||||||
/* Handle a pragma that expects an int paramater */
|
/* Handle a pragma that expects an int parameter */
|
||||||
{
|
{
|
||||||
long Val;
|
long Val;
|
||||||
int Push;
|
int Push;
|
||||||
|
|||||||
Reference in New Issue
Block a user