From 3e5400c4c57e16718e15e64b5771fa60debf5504 Mon Sep 17 00:00:00 2001 From: freddygv Date: Fri, 3 Dec 2021 12:52:41 -0700 Subject: [PATCH] Clarify feature name in partition docstring --- api/partition.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api/partition.go b/api/partition.go index d849378b32..88edfb7b0b 100644 --- a/api/partition.go +++ b/api/partition.go @@ -12,7 +12,7 @@ type Partition struct { Name string `json:"Name"` // Description is where the user puts any information they want - // about the partition. It is not used internally. + // about the admin partition. It is not used internally. Description string `json:"Description,omitempty"` // DeletedAt is the time when the Partition was marked for deletion @@ -29,7 +29,7 @@ type Partition struct { // PartitionDefaultName is the default partition value. const PartitionDefaultName = "default" -// Partitions can be used to manage Partitions in Consul Enterprise.. +// Partitions can be used to manage Partitions in Consul Enterprise. type Partitions struct { c *Client }