Skip to content

Commit

Permalink
Fixed lowerbound logic in doc, 5 other places
Browse files Browse the repository at this point in the history
  • Loading branch information
vladtr committed Jul 26, 2022
1 parent 0cb196b commit 41de4c7
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions libraries/chain/include/eosio/chain/webassembly/interface.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -954,7 +954,7 @@ namespace webassembly {

/**
* Find the table row in a secondary 64-bit integer index table that matches the lowerbound condition for a given secondary key.
* Lowerbound secondary index is the first secondary index which key is <= the given secondary index key.
* Lowerbound secondary index is the first secondary index which key is >= the given secondary index key.
*
* @ingroup database uint64_t-secondary-index
* @param code - the name of the owner of the table.
Expand Down Expand Up @@ -1095,7 +1095,7 @@ namespace webassembly {

/**
* Find the table row in a secondary 128-bit integer index table that matches the lowerbound condition for a given secondary key.
* Lowerbound secondary index is the first secondary index which key is <= the given secondary index key.
* Lowerbound secondary index is the first secondary index which key is >= the given secondary index key.
*
* @ingroup database uint128_t-secondary-index
* @param code - the name of the owner of the table.
Expand Down Expand Up @@ -1236,7 +1236,7 @@ namespace webassembly {

/**
* Find the table row in a secondary 256-bit integer index table that matches the lowerbound condition for a given secondary key.
* Lowerbound secondary index is the first secondary index which key is <= the given secondary index key.
* Lowerbound secondary index is the first secondary index which key is >= the given secondary index key.
*
* @ingroup database 256-bit-secondary-index
* @param code - the name of the owner of the table.
Expand Down Expand Up @@ -1380,7 +1380,7 @@ namespace webassembly {

/**
* Find the table row in a secondary double-precision floating-point index table that matches the lowerbound condition for a given secondary key.
* Lowerbound secondary index is the first secondary index which key is <= the given secondary index key.
* Lowerbound secondary index is the first secondary index which key is >= the given secondary index key.
*
* @ingroup database double-secondary-index
* @param code - the name of the owner of the table.
Expand Down Expand Up @@ -1524,7 +1524,7 @@ namespace webassembly {

/**
* Find the table row in a secondary quadruple-precision floating-point index table that matches the lowerbound condition for a given secondary key.
* Lowerbound secondary index is the first secondary index which key is <= the given secondary index key.
* Lowerbound secondary index is the first secondary index which key is >= the given secondary index key.
*
* @ingroup database long-double-secondary-index
* @param code - the name of the owner of the table.
Expand Down

0 comments on commit 41de4c7

Please sign in to comment.