Skip to content

Commit

Permalink
doc: fix crud.SchemaRequest methods
Browse files Browse the repository at this point in the history
  • Loading branch information
DifferentialOrange committed Nov 8, 2023
1 parent cdc8ed6 commit 9a58dc8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crud/schema.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@ type SchemaRequest struct {
space OptString
}

// MakeSchemaRequest returns a new empty StatsRequest.
// MakeSchemaRequest returns a new empty SchemaRequest.
func MakeSchemaRequest() SchemaRequest {
req := SchemaRequest{}
req.impl = newCall("crud.schema")
return req
}

// Space sets the space name for the StatsRequest request.
// Space sets the space name for the SchemaRequest request.
// Note: default value is nil.
func (req SchemaRequest) Space(space string) SchemaRequest {
req.space = MakeOptString(space)
Expand Down

0 comments on commit 9a58dc8

Please sign in to comment.