Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit77a7bb3

Browse files
committed
psql: Improve spelling
1 parent9ff1a11 commit77a7bb3

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

‎src/bin/psql/command.c

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2412,7 +2412,7 @@ _align2string(enum printFormat in)
24122412
}
24132413

24142414
/*
2415-
* Parse enteredunicode linestyle. If ok, update *linestyle and return
2415+
* Parse enteredUnicode linestyle. If ok, update *linestyle and return
24162416
* true, else return false.
24172417
*/
24182418
staticbool
@@ -2515,7 +2515,7 @@ do_pset(const char *param, const char *value, printQueryOpt *popt, bool quiet)
25152515
refresh_utf8format(&(popt->topt));
25162516
else
25172517
{
2518-
psql_error("\\pset: allowedunicode borderlinestyles are single, double\n");
2518+
psql_error("\\pset: allowedUnicode borderline styles are single, double\n");
25192519
return false;
25202520
}
25212521
}
@@ -2530,7 +2530,7 @@ do_pset(const char *param, const char *value, printQueryOpt *popt, bool quiet)
25302530
refresh_utf8format(&(popt->topt));
25312531
else
25322532
{
2533-
psql_error("\\pset: allowedunicode columnlinestyles are single, double\n");
2533+
psql_error("\\pset: allowedUnicode columnline styles are single, double\n");
25342534
return false;
25352535
}
25362536
}
@@ -2545,7 +2545,7 @@ do_pset(const char *param, const char *value, printQueryOpt *popt, bool quiet)
25452545
refresh_utf8format(&(popt->topt));
25462546
else
25472547
{
2548-
psql_error("\\pset: allowedunicode headerlinestyles are single, double\n");
2548+
psql_error("\\pset: allowedUnicode headerline styles are single, double\n");
25492549
return false;
25502550
}
25512551
}
@@ -2855,22 +2855,22 @@ printPsetInfo(const char *param, struct printQueryOpt *popt)
28552855
printf(_("Tuples only is off.\n"));
28562856
}
28572857

2858-
/*unicode style formatting */
2858+
/*Unicode style formatting */
28592859
elseif (strcmp(param,"unicode_border_linestyle")==0)
28602860
{
2861-
printf(_("Unicode borderlinestyle is \"%s\".\n"),
2861+
printf(_("Unicode borderline style is \"%s\".\n"),
28622862
_unicode_linestyle2string(popt->topt.unicode_border_linestyle));
28632863
}
28642864

28652865
elseif (strcmp(param,"unicode_column_linestyle")==0)
28662866
{
2867-
printf(_("Unicode columnlinestyle is \"%s\".\n"),
2867+
printf(_("Unicode columnline style is \"%s\".\n"),
28682868
_unicode_linestyle2string(popt->topt.unicode_column_linestyle));
28692869
}
28702870

28712871
elseif (strcmp(param,"unicode_header_linestyle")==0)
28722872
{
2873-
printf(_("Unicode headerlinestyle is \"%s\".\n"),
2873+
printf(_("Unicode headerline style is \"%s\".\n"),
28742874
_unicode_linestyle2string(popt->topt.unicode_header_linestyle));
28752875
}
28762876

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp