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

Fixed some doc strings in as_status.h #161

Closed
wants to merge 7 commits into from
Closed
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
14 changes: 7 additions & 7 deletions src/include/aerospike/as_status.h
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ typedef enum as_status_e {
AEROSPIKE_ERR_INVALID_NODE = -8,

/**
* Asynchronous connection error.
* Max connections would be exceeded.
*/
AEROSPIKE_ERR_NO_MORE_CONNECTIONS = -7,

Expand Down Expand Up @@ -316,7 +316,7 @@ typedef enum as_status_e {
AEROSPIKE_SECURITY_NOT_ENABLED = 52,

/**
* Security type not supported by connected server.
* Security scheme not supported
*/
AEROSPIKE_SECURITY_SCHEME_NOT_SUPPORTED = 53,

Expand Down Expand Up @@ -356,7 +356,7 @@ typedef enum as_status_e {
AEROSPIKE_EXPIRED_PASSWORD = 63,

/**
* Forbidden password (e.g. recently used)
* Forbidden password (e.g. recently used).
*/
AEROSPIKE_FORBIDDEN_PASSWORD = 64,

Expand Down Expand Up @@ -401,7 +401,7 @@ typedef enum as_status_e {
AEROSPIKE_INVALID_QUOTA = 75,

/**
* User must be authentication before performing database operations.
* User must be authenticated before performing database operations.
*/
AEROSPIKE_NOT_AUTHENTICATED = 80,

Expand Down Expand Up @@ -472,7 +472,7 @@ typedef enum as_status_e {
AEROSPIKE_ERR_BATCH_QUEUES_FULL = 152,

/**
* Invalid/Unsupported GeoJSON
* Invalid/Unsupported GeoJSON.
*/
AEROSPIKE_ERR_GEO_INVALID_GEOJSON = 160,

Expand All @@ -482,12 +482,12 @@ typedef enum as_status_e {
AEROSPIKE_ERR_INDEX_FOUND = 200,

/**
* Index not found
* Index not found.
*/
AEROSPIKE_ERR_INDEX_NOT_FOUND = 201,

/**
* Index is out of memory
* Index is out of memory.
*/
AEROSPIKE_ERR_INDEX_OOM = 202,

Expand Down
Loading