Fix review comments

This commit is contained in:
Yichi Chiang 2018-03-20 16:45:34 -07:00
parent e9e8674516
commit f23df874ce
2 changed files with 2 additions and 2 deletions

View File

@ -39,7 +39,7 @@ import com.apple.foundationdb.tuple.Tuple;
* Transactions group operations into a unit with the properties of atomicity, isolation, and
* durability. Transactions also provide the ability to maintain an application's invariants or
* integrity constraints, supporting the property of consistency. Together these properties are
* known as <a href="/developer-guide.html#acid" target="_blank">acid</a>.<br>
* known as <a href="/developer-guide.html#acid" target="_blank">ACID</a>.<br>
* <br>
* Transactions are also causally consistent: once a transaction has been successfully committed,
* all subsequently created transactions will see the modifications made by it.

View File

@ -38,7 +38,7 @@ import com.apple.foundationdb.tuple.Tuple;
* </p>
*
* For general guidance on partition usage, see
* <a href="/developer-guide.html#directory-partitions" target="_blank">The Developer Guide</a>.
* <a href="/developer-guide.html#directory-partitions" target="_blank">Developer Guide</a>.
*/
class DirectoryPartition extends DirectorySubspace {