diff options
author | Luke Shumaker <lukeshu@lukeshu.com> | 2018-09-05 00:00:01 -0400 |
---|---|---|
committer | Luke Shumaker <lukeshu@lukeshu.com> | 2018-09-05 00:00:01 -0400 |
commit | 5eb4559beef25554da16fd61fd0c30e9957a19c1 (patch) | |
tree | d52b9cd79c9d8e1702e5165a25549a607511e33c | |
parent | ba4f020083964699deff6a96f43e8d1a0acdc46b (diff) |
sd_id128: Fix weird grammar in docs
-rw-r--r-- | sd_id128/types.go | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/sd_id128/types.go b/sd_id128/types.go index 3b5228c..12741a8 100644 --- a/sd_id128/types.go +++ b/sd_id128/types.go @@ -1,4 +1,4 @@ -// Copyright 2016 Luke Shumaker +// Copyright 2016, 2018 Luke Shumaker // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -152,9 +152,9 @@ func Parse(s string) (ID128, error) { // ParsePlain parses a 128-bit ID represented in the plain string // format. // -// If you would like more flexibility, and would like to be accept -// either the plain string format or the UUID string format, then you -// should use the Parse function. +// If you would like more flexibility, and would like to accept either +// the plain string format or the UUID string format, then you should +// use the Parse function. // // If the input string is not a 32-digit hexadecimal number, then // ErrInvalid is returned. @@ -168,9 +168,9 @@ func ParsePlain(s string) (ID128, error) { // ParsePlain parses a 128-bit ID represented in the UUID string // format. // -// If you would like more flexibility, and would like to be accept -// either the plain string format or the UUID string format, then you -// should use the Parse function. +// If you would like more flexibility, and would like to accept either +// the plain string format or the UUID string format, then you should +// use the Parse function. // // If the input string is not a 36-character UUID string, then // ErrInvalid is returned. This function does not validate the |