Skip to content
This repository was archived by the owner on Jul 21, 2019. It is now read-only.

Commit 16d6c6b

Browse files
author
Andrew Cai
committed
Fix superscripts for exponents to display correctly on webpage.
1 parent 3e3af53 commit 16d6c6b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

content/latest/api/ysql/commands/ddl_create_sequence.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ Where
6262
- `sequence_name` is the name of the sequence.
6363
- `increment` is the difference between consecutive values in the sequence. Default is 1.
6464
- `minvalue` is the minimum value allowed in the sequence. If this value is reached (in a sequence with a negative increment), `nextval()` will return an error. If `NO MINVALUE` is specified, the default value will be used. Default is 1.
65-
- `maxvalue` is the maximum value allowed in the sequence. If this value is reached, `nextval()` will return an error. If `NO MAXVALUE` is specified, the default will be used. Default is 2^63 - 1.
65+
- `maxvalue` is the maximum value allowed in the sequence. If this value is reached, `nextval()` will return an error. If `NO MAXVALUE` is specified, the default will be used. Default is 2<sup>63</sup> - 1.
6666
- `start` is the first value in the sequence. `start` cannot be less than `minvalue`. Default is 1.
6767
- `cache` specifies how many numbers from the sequence to cache in the client. Default is 1.
6868

content/latest/quick-start/binary/macos-install.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Make sure that this command shows a big enough value.
2121
$ launchctl limit maxfiles
2222
```
2323

24-
We recommend simply setting the soft and hard limits to 1MB (i.e. 2^20 = 1048576).
24+
We recommend simply setting the soft and hard limits to 1MB (i.e. 2<sup>20</sup> = 1048576).
2525

2626
- Edit `/etc/sysctl.conf` with the following contents.
2727

0 commit comments

Comments
 (0)