Skip to content

Commit

Permalink
add license
Browse files Browse the repository at this point in the history
  • Loading branch information
dkotik committed Apr 7, 2024
1 parent 4c5eb53 commit 9aef883
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 5 deletions.
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2024 Dmitry Kotik

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
2 changes: 1 addition & 1 deletion options.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ func WithOptions(set ...Option) Option {
}
}

// WithQuorumShards sets the miminal number of shards neccessary
// WithQuorumShards sets the miminal number of shards necessary
// for reconstruction. Defaults to five.
func WithQuorumShards(count uint8) Option {
return func(o *options) error {
Expand Down
4 changes: 2 additions & 2 deletions reader.go
Original file line number Diff line number Diff line change
Expand Up @@ -79,15 +79,15 @@ func (r *Reader) NextShard(ctx context.Context, w io.Writer) (s *Shard, err erro
switch err {
case nil:
case io.EOF, io.ErrUnexpectedEOF, telomeres.ErrBoundary:
if n, err = w.Write(r.buffer[TagBytesForCRC+TagSize : n]); err != nil {
if _, err = w.Write(r.buffer[TagBytesForCRC+TagSize : n]); err != nil {
return s, err
}
fallthrough
default:
return s, err
}

n, err = w.Write(r.buffer[TagBytesForCRC+TagSize : n])
_, err = w.Write(r.buffer[TagBytesForCRC+TagSize : n])
// log.Fatalf("%s", r.buffer[TagBytesForCRC+TagSize:n])
if err != nil {
return s, err
Expand Down
4 changes: 2 additions & 2 deletions tag.go
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ type sequentialTagger struct {
// to zero and increments shard batch counter.
//
// Always wrap with NewSynchronousTagger when tagging
// syncronously.
// synchronously.
func NewSequentialTagger(t Tag, shardLimit uint8) Tagger {
return &sequentialTagger{
encoded: t.Bytes(),
Expand Down Expand Up @@ -201,7 +201,7 @@ type latteralTagger struct {
// separate shard files.
//
// Always wrap with NewSynchronousTagger when tagging
// syncronously.
// synchronously.
func NewLateralTagger(t Tag) Tagger {
return &latteralTagger{
encoded: t.Bytes(),
Expand Down

0 comments on commit 9aef883

Please sign in to comment.