Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typos in examples #57

Merged
merged 1 commit into from
Dec 19, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/examples.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ To represent this in SQL, `__key` is a magic column. When developers use
`sendKey=true` in their applications, the `__key` column will
reflect the _userKey_ that is saved with any write operation. Otherwise, it
will appear to be NULL, but each row still has a distinct object identifier,
the Aerospike record's _diget_ (see the
the Aerospike record's _digest_ (see the
[Glossary](https://www.aerospike.com/docs/guide/glossary.html)). The Aerospike
JDBC driver always sends the primary key.

Expand Down Expand Up @@ -248,7 +248,7 @@ snmptrap |Simple Network Management Protocol Trap(SNMPTRAP) | 1| 162|
Since Aerospike is schemaless, the data browser may need to be refreshed for it
to pick up the new _extra_ column.

Aerospike columns (bins) can be dropped by assinging a `NULL` to them.
Aerospike columns (bins) can be dropped by assigning a `NULL` to them.

```sql
UPDATE port_list SET extra=NULL;
Expand Down
Loading