summaryrefslogtreecommitdiffstats
path: root/src/sat/bmc/bmcFault.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/sat/bmc/bmcFault.c')
-rw-r--r--src/sat/bmc/bmcFault.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/sat/bmc/bmcFault.c b/src/sat/bmc/bmcFault.c
index 3e3e6ce9..7a2a57fb 100644
--- a/src/sat/bmc/bmcFault.c
+++ b/src/sat/bmc/bmcFault.c
@@ -384,12 +384,12 @@ int Gia_FormStrCount( char * pStr, int * pnVars, int * pnPars )
int i, Counter = 0;
if ( pStr[0] != '(' )
{
- printf( "The first symbol should be the opening paranthesis \"(\".\n" );
+ printf( "The first symbol should be the opening parenthesis \"(\".\n" );
return 1;
}
if ( pStr[strlen(pStr)-1] != ')' )
{
- printf( "The last symbol should be the closing paranthesis \")\".\n" );
+ printf( "The last symbol should be the closing parenthesis \")\".\n" );
return 1;
}
for ( i = 0; pStr[i]; i++ )
@@ -399,7 +399,7 @@ int Gia_FormStrCount( char * pStr, int * pnVars, int * pnPars )
Counter--;
if ( Counter != 0 )
{
- printf( "The number of opening and closing parantheses is not equal.\n" );
+ printf( "The number of opening and closing parentheses is not equal.\n" );
return 1;
}
*pnVars = 0;