Commit 25170e24 authored by Kirill Smelkov's avatar Kirill Smelkov

go/zodb: pkgdoc: "Operations" -> "Storage layer"

As we are going to add another - "Application layer" to zodb package,
turn previous text overviewing IStorage & friends into "Storage layer"
section.
parent a5ecb24b
...@@ -50,11 +50,14 @@ ...@@ -50,11 +50,14 @@
// An object can reference other objects in the database by their oid. // An object can reference other objects in the database by their oid.
// //
// //
// Operations // Storage layer
// //
// A ZODB database can be opened with OpenStorage. Once opened IStorage // The storage layer provides access to a ZODB database in terms of database
// interface is returned that represents access to the database. Please see // records with raw bytes payload.
// documentation of IStorage, and other interfaces it embeds, for details. //
// At storage level a ZODB database can be opened with OpenStorage. Once opened
// IStorage interface is returned that represents access to the database.
// Please see IStorage, and interfaces it embeds, for details.
// //
// //
// -------- // --------
...@@ -164,7 +167,7 @@ const ( ...@@ -164,7 +167,7 @@ const (
) )
// ---- interfaces ---- // ---- storage interfaces ----
// NoObjectError is the error which tells that there is no such object in the database at all. // NoObjectError is the error which tells that there is no such object in the database at all.
type NoObjectError struct { type NoObjectError struct {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment