@@ -2305,7 +2305,7 @@ _align2string(enum printFormat in)
2305
2305
}
2306
2306
2307
2307
/*
2308
- * Parse enteredunicode linestyle. If ok, update *linestyle and return
2308
+ * Parse enteredUnicode linestyle. If ok, update *linestyle and return
2309
2309
* true, else return false.
2310
2310
*/
2311
2311
static bool
@@ -2408,7 +2408,7 @@ do_pset(const char *param, const char *value, printQueryOpt *popt, bool quiet)
2408
2408
refresh_utf8format (& (popt -> topt ));
2409
2409
else
2410
2410
{
2411
- psql_error ("\\pset: allowedunicode borderlinestyles are single, double\n" );
2411
+ psql_error ("\\pset: allowedUnicode borderline styles are single, double\n" );
2412
2412
return false;
2413
2413
}
2414
2414
}
@@ -2423,7 +2423,7 @@ do_pset(const char *param, const char *value, printQueryOpt *popt, bool quiet)
2423
2423
refresh_utf8format (& (popt -> topt ));
2424
2424
else
2425
2425
{
2426
- psql_error ("\\pset: allowedunicode columnlinestyles are single, double\n" );
2426
+ psql_error ("\\pset: allowedUnicode columnline styles are single, double\n" );
2427
2427
return false;
2428
2428
}
2429
2429
}
@@ -2438,7 +2438,7 @@ do_pset(const char *param, const char *value, printQueryOpt *popt, bool quiet)
2438
2438
refresh_utf8format (& (popt -> topt ));
2439
2439
else
2440
2440
{
2441
- psql_error ("\\pset: allowedunicode headerlinestyles are single, double\n" );
2441
+ psql_error ("\\pset: allowedUnicode headerline styles are single, double\n" );
2442
2442
return false;
2443
2443
}
2444
2444
}
@@ -2748,22 +2748,22 @@ printPsetInfo(const char *param, struct printQueryOpt *popt)
2748
2748
printf (_ ("Tuples only is off.\n" ));
2749
2749
}
2750
2750
2751
- /*unicode style formatting */
2751
+ /*Unicode style formatting */
2752
2752
else if (strcmp (param ,"unicode_border_linestyle" )== 0 )
2753
2753
{
2754
- printf (_ ("Unicode borderlinestyle is \"%s\".\n" ),
2754
+ printf (_ ("Unicode borderline style is \"%s\".\n" ),
2755
2755
_unicode_linestyle2string (popt -> topt .unicode_border_linestyle ));
2756
2756
}
2757
2757
2758
2758
else if (strcmp (param ,"unicode_column_linestyle" )== 0 )
2759
2759
{
2760
- printf (_ ("Unicode columnlinestyle is \"%s\".\n" ),
2760
+ printf (_ ("Unicode columnline style is \"%s\".\n" ),
2761
2761
_unicode_linestyle2string (popt -> topt .unicode_column_linestyle ));
2762
2762
}
2763
2763
2764
2764
else if (strcmp (param ,"unicode_header_linestyle" )== 0 )
2765
2765
{
2766
- printf (_ ("Unicode headerlinestyle is \"%s\".\n" ),
2766
+ printf (_ ("Unicode headerline style is \"%s\".\n" ),
2767
2767
_unicode_linestyle2string (popt -> topt .unicode_header_linestyle ));
2768
2768
}
2769
2769