Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 559bdd5

Browse files
committed
meson: Remove triple-quoted strings
Triple-quoted strings are for multiline strings in Meson. None of the descriptions that got changed were multiline and the entire file uses single-line descriptions. Author: Tristan Partin <tristan@neon.tech> Discussion: https://www.postgresql.org/message-id/flat/CSPIJVUDZFKX.3KHMOAVGF94RV%40c3po
1 parent efcf55f commit 559bdd5

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

meson_options.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,19 +10,19 @@ option('blocksize', type : 'combo',
1010
option('wal_blocksize', type : 'combo',
1111
choices: ['1', '2', '4', '8', '16', '32', '64'],
1212
value: '8',
13-
description : '''WAL block size, in kilobytes''')
13+
description : 'WAL block size, in kilobytes')
1414

1515
option('segsize', type : 'integer', value : 1,
16-
description : '''Segment size, in gigabytes''')
16+
description : 'Segment size, in gigabytes')
1717

1818
option('segsize_blocks', type : 'integer', value: 0,
19-
description : '''Segment size, in blocks''')
19+
description : 'Segment size, in blocks')
2020

2121

2222
# Miscellaneous options
2323

2424
option('krb_srvnam', type : 'string', value : 'postgres',
25-
description : '''Default Kerberos service principal for GSSAPI''')
25+
description : 'Default Kerberos service principal for GSSAPI')
2626

2727
option('system_tzdata', type: 'string', value: '',
2828
description: 'use system time zone data in specified directory')
@@ -32,7 +32,7 @@ option('system_tzdata', type: 'string', value: '',
3232

3333
option('pgport', type : 'integer', value : 5432,
3434
min: 1, max: 65535,
35-
description : '''Default port number for server and clients''')
35+
description : 'Default port number for server and clients')
3636

3737

3838
# Developer options

0 commit comments

Comments
 (0)