Fix go documentation URLs

This commit is contained in:
Douglas Daniels 2018-04-19 22:43:11 -05:00
parent 90773ec03b
commit dc7d455391
No known key found for this signature in database
GPG Key ID: 3367E6E0094014E9
2 changed files with 3 additions and 3 deletions

View File

@ -30,7 +30,7 @@ Windows and OS X at https://www.foundationdb.org/downloads/fdb-c/.
This documentation specifically applies to the FoundationDB Go binding. For more
extensive guidance to programming with FoundationDB, as well as API
documentation for the other FoundationDB interfaces, please see
https://www.foundationdb.org/documentation/index.html.
https://apple.github.io/foundationdb/index.html.
Basic Usage
@ -198,7 +198,7 @@ operations perform different transformations. Like other database operations, an
atomic operation is used within a transaction.
For more information on atomic operations in FoundationDB, please see
https://www.foundationdb.org/documentation/developer-guide.html#atomic-operations. The
https://apple.github.io/foundationdb/developer-guide.html#atomic-operations. The
operands to atomic operations in this API must be provided as appropriately
encoded byte slices. To convert a Go type to a byte slice, see the binary
package.

View File

@ -28,7 +28,7 @@ package fdb
// transaction conflicts but making it harder to reason about concurrency.
//
// For more information on snapshot reads, see
// https://www.foundationdb.org/documentation/developer-guide.html#snapshot-reads.
// https://apple.github.io/foundationdb/developer-guide.html#snapshot-reads.
type Snapshot struct {
*transaction
}