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

Commit f4c32cd

Browse files
committed
doc: fix wrong tag used in create sequence manual.
In ref/create_sequence.sgml <literal> tag was used for nextval function name. This should have been <function> tag. Author: Noboru Saito Discussion: https://postgr.es/m/CAAM3qnJTDFFfRf5JHJ4AYrNcqXgMmj0pbH0%2Bvm%3DYva%2BpJyGymA%40mail.gmail.com Backpatch-through: 10
1 parent 3eae0cb commit f4c32cd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/src/sgml/ref/create_sequence.sgml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -310,7 +310,7 @@ SELECT * FROM <replaceable>name</replaceable>;
310310
session A might reserve values 1..10 and return
311311
<function>nextval</function>=1, then session B might reserve values
312312
11..20 and return <function>nextval</function>=11 before session A
313-
has generated <literal>nextval</literal>=2. Thus, with a
313+
has generated <function>nextval</function>=2. Thus, with a
314314
<replaceable class="parameter">cache</replaceable> setting of one
315315
it is safe to assume that <function>nextval</function> values are generated
316316
sequentially; with a <replaceable

0 commit comments

Comments
 (0)