@@ -1055,7 +1055,7 @@ pltcl_trigger_handler(PG_FUNCTION_ARGS, bool pltrusted)
10551055if (ret_numvals %2 != 0 )
10561056ereport (ERROR ,
10571057(errcode (ERRCODE_E_R_I_E_TRIGGER_PROTOCOL_VIOLATED ),
1058- errmsg ("invalid return listfrom trigger - must have even# of elements" )));
1058+ errmsg ("trigger's return list must have evennumber of elements" )));
10591059
10601060modattrs = (int * )palloc (tupdesc -> natts * sizeof (int ));
10611061modvalues = (Datum * )palloc (tupdesc -> natts * sizeof (Datum ));
@@ -2345,7 +2345,7 @@ pltcl_SPI_execute_plan(ClientData cdata, Tcl_Interp *interp,
23452345if (strlen (nulls )!= qdesc -> nargs )
23462346{
23472347Tcl_SetResult (interp ,
2348- "length of nulls string doesn't match# of arguments" ,
2348+ "length of nulls string doesn't matchnumber of arguments" ,
23492349TCL_STATIC );
23502350return TCL_ERROR ;
23512351}
@@ -2370,12 +2370,12 @@ pltcl_SPI_execute_plan(ClientData cdata, Tcl_Interp *interp,
23702370return TCL_ERROR ;
23712371
23722372/************************************************************
2373- * Check that the# of arguments matches
2373+ * Check that thenumber of arguments matches
23742374 ************************************************************/
23752375if (callnargs != qdesc -> nargs )
23762376{
23772377Tcl_SetResult (interp ,
2378- "argument list length doesn't match# of arguments for query" ,
2378+ "argument list length doesn't matchnumber of arguments for query" ,
23792379TCL_STATIC );
23802380ckfree ((char * )callargs );
23812381return TCL_ERROR ;