From 1660c41f8ce28a84008d1b71063f2f617c09cb2a Mon Sep 17 00:00:00 2001 From: Nuno Cruces Date: Thu, 29 Aug 2024 10:32:10 +0100 Subject: [PATCH] Typo. --- driver/example_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/driver/example_test.go b/driver/example_test.go index 2d3b19a..3ce6278 100644 --- a/driver/example_test.go +++ b/driver/example_test.go @@ -176,7 +176,7 @@ func Example_customTime() { // a time. 2009-11-17T20:34:58.650Z goes in, but parsing and formatting // it with [time.RFC3338Nano] results in 2009-11-17T20:34:58.65Z. Though // the times are identical, the trailing zero is lost in the string - // representation so the driver considers the conversion unsuccesful. + // representation so the driver considers the conversion unsuccessful. c1 := CustomTime{time.Date( 2009, 11, 17, 20, 34, 58, 650000000, time.UTC)}