doc typos, etc.

This commit is contained in:
jackfoxy 2023-06-01 12:13:59 -07:00
parent 3459433ba8
commit 550294643f
4 changed files with 9 additions and 9 deletions

View File

@ -64,7 +64,7 @@ All objects in the database *sys* and namespace *sys* are system-owned and read-
The following are some common language structures used throughout the reference:
```
<db-qualifer> ::= { <database>.<namespace>. | <database>.. | <namespace>. }
<db-qualifier> ::= { <database>.<namespace>. | <database>.. | <namespace>. }
```
Provides the fully qualified path to a `<table>` or `<view>` object on the host ship.
@ -74,10 +74,10 @@ Provides the fully qualified path to a `<table>` or `<view>` object on the host
`<namespace>` defaults to 'dbo' (database owner).
```
<ship-qualifer> ::=
<ship-qualifier> ::=
{ @p.<database>.<namespace>.
| @p.<database>..
| <db-qualifer> }
| <db-qualifier> }
```
Adds ship qualification.
@ -93,7 +93,7 @@ Each CTE is always referenced by alias, never inlined.
```
<table-set> ::=
[ <ship-qualifer> ]{ <table> | <view> }
[ <ship-qualifier> ]{ <table> | <view> }
| <common-table-expression>
| ( column-1 [,...column-n] )
| *

View File

@ -27,7 +27,7 @@ Obelisk supports the following auras:
|@sw|signed base-64|--0w2.04AfS.G8xqc|
|@sx|signed hexadecimal|--0x2004.90fd|
|@t|UTF-8 text (cord)|'urbit'|
|@ta|ASCII text (knot)|~.urbit|
|@ta|ASCII text (knot, url safe)|~.urbit|
|@tas|ASCII text symbol (term)|%urbit|
|@ub|unsigned binary|0b10.1011|
|@ud|unsigned decimal|8.675.309|

View File

@ -134,7 +134,7 @@ Removes all rows in a base table.
```
<truncate-table> ::=
TRUNCATE TABLE [ <ship-qualifer> ] <table>
TRUNCATE TABLE [ <ship-qualifier> ] <table>
```
## API
@ -172,7 +172,7 @@ Changes content of selected columns in existing rows of a `<table-set>`.
```
<update> ::=
UPDATE [ <ship-qualifer> ] <table-set>
UPDATE [ <ship-qualifier> ] <table-set>
SET { <column> = <scalar-expression> } [ ,...n ]
[ WHERE <predicate> ]
```

View File

@ -23,7 +23,7 @@ NOTE: scalar and aggregate functions are currently under development and not ava
[ HAVING <predicate> ]
]
SELECT [ TOP <n> ] [ BOTTOM <n> ]
{ * | { [<ship-qualifer>]<table-view> | <alias> }.*
{ * | { [<ship-qualifier>]<table-view> | <alias> }.*
| <expression> [ [ AS ] <column-alias> ]
} [ ,...n ]
[ ORDER BY
@ -129,7 +129,7 @@ See CH 8 Functions for full documentation on Scalars.
```
<qualified-column> ::=
[ [ <ship-qualifer> ]<table-view> | <alias> ].<column-name>
[ [ <ship-qualifier> ]<table-view> | <alias> ].<column-name>
```
## API