summaryrefslogtreecommitdiffstats
path: root/src/base/io/io.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/base/io/io.c')
-rw-r--r--src/base/io/io.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/base/io/io.c b/src/base/io/io.c
index 9dee37a7..b472dac5 100644
--- a/src/base/io/io.c
+++ b/src/base/io/io.c
@@ -2663,22 +2663,22 @@ int IoCommandWriteTruth( Abc_Frame_t * pAbc, int argc, char **argv )
}
if ( pAbc->pNtkCur == NULL )
{
- printf( "Current networks is not available.\n" );
+ printf( "Current network is not available.\n" );
return 0;
}
if ( !Abc_NtkIsLogic(pNtk) )
{
- printf( "Current networks should not an AIG. Run \"logic\".\n" );
+ printf( "Current network should not an AIG. Run \"logic\".\n" );
return 0;
}
if ( Abc_NtkPoNum(pNtk) != 1 )
{
- printf( "Current networks should have exactly one primary output.\n" );
+ printf( "Current network should have exactly one primary output.\n" );
return 0;
}
if ( Abc_NtkNodeNum(pNtk) != 1 )
{
- printf( "Current networks should have exactly one node.\n" );
+ printf( "Current network should have exactly one node.\n" );
return 0;
}
pNode = Abc_ObjFanin0( Abc_NtkPo(pNtk, 0) );