@@ -2412,7 +2412,7 @@ _align2string(enum printFormat in)
2412
2412
}
2413
2413
2414
2414
/*
2415
- * Parse enteredunicode linestyle. If ok, update *linestyle and return
2415
+ * Parse enteredUnicode linestyle. If ok, update *linestyle and return
2416
2416
* true, else return false.
2417
2417
*/
2418
2418
static bool
@@ -2515,7 +2515,7 @@ do_pset(const char *param, const char *value, printQueryOpt *popt, bool quiet)
2515
2515
refresh_utf8format (& (popt -> topt ));
2516
2516
else
2517
2517
{
2518
- psql_error ("\\pset: allowedunicode borderlinestyles are single, double\n" );
2518
+ psql_error ("\\pset: allowedUnicode borderline styles are single, double\n" );
2519
2519
return false;
2520
2520
}
2521
2521
}
@@ -2530,7 +2530,7 @@ do_pset(const char *param, const char *value, printQueryOpt *popt, bool quiet)
2530
2530
refresh_utf8format (& (popt -> topt ));
2531
2531
else
2532
2532
{
2533
- psql_error ("\\pset: allowedunicode columnlinestyles are single, double\n" );
2533
+ psql_error ("\\pset: allowedUnicode columnline styles are single, double\n" );
2534
2534
return false;
2535
2535
}
2536
2536
}
@@ -2545,7 +2545,7 @@ do_pset(const char *param, const char *value, printQueryOpt *popt, bool quiet)
2545
2545
refresh_utf8format (& (popt -> topt ));
2546
2546
else
2547
2547
{
2548
- psql_error ("\\pset: allowedunicode headerlinestyles are single, double\n" );
2548
+ psql_error ("\\pset: allowedUnicode headerline styles are single, double\n" );
2549
2549
return false;
2550
2550
}
2551
2551
}
@@ -2855,22 +2855,22 @@ printPsetInfo(const char *param, struct printQueryOpt *popt)
2855
2855
printf (_ ("Tuples only is off.\n" ));
2856
2856
}
2857
2857
2858
- /*unicode style formatting */
2858
+ /*Unicode style formatting */
2859
2859
else if (strcmp (param ,"unicode_border_linestyle" )== 0 )
2860
2860
{
2861
- printf (_ ("Unicode borderlinestyle is \"%s\".\n" ),
2861
+ printf (_ ("Unicode borderline style is \"%s\".\n" ),
2862
2862
_unicode_linestyle2string (popt -> topt .unicode_border_linestyle ));
2863
2863
}
2864
2864
2865
2865
else if (strcmp (param ,"unicode_column_linestyle" )== 0 )
2866
2866
{
2867
- printf (_ ("Unicode columnlinestyle is \"%s\".\n" ),
2867
+ printf (_ ("Unicode columnline style is \"%s\".\n" ),
2868
2868
_unicode_linestyle2string (popt -> topt .unicode_column_linestyle ));
2869
2869
}
2870
2870
2871
2871
else if (strcmp (param ,"unicode_header_linestyle" )== 0 )
2872
2872
{
2873
- printf (_ ("Unicode headerlinestyle is \"%s\".\n" ),
2873
+ printf (_ ("Unicode headerline style is \"%s\".\n" ),
2874
2874
_unicode_linestyle2string (popt -> topt .unicode_header_linestyle ));
2875
2875
}
2876
2876