From d43c0f9449522d8a46979dc814c903079edfb958 Mon Sep 17 00:00:00 2001 From: Michael Primeaux Date: Mon, 25 Nov 2024 17:21:42 -0600 Subject: [PATCH] debt: Corrected documentation --- version.go | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/version.go b/version.go index e6bd18b..ae587ed 100644 --- a/version.go +++ b/version.go @@ -723,10 +723,9 @@ func (v Version) GreaterThanOrEqual(other Version) bool { return v.Compare(other) >= 0 } -// Config holds the runtime configuration for the Nano ID generator. +// Config holds the runtime configuration for the parser. // -// It is immutable after initialization and provides all the necessary -// parameters for generating unique IDs efficiently and securely. +// It is immutable after initialization. func (p *parser) Config() Config { return p.config }