diff --git a/core/rlwe/keys.go b/core/rlwe/keys.go index 029c5728..a93705e0 100644 --- a/core/rlwe/keys.go +++ b/core/rlwe/keys.go @@ -605,7 +605,7 @@ func (evk MemEvaluationKeySet) BinarySize() (size int) { return } -// [WriteTo] writes the object on an [io.Writer]. It implements the [io.WriterTo] +// WriteTo writes the object on an [io.Writer]. It implements the [io.WriterTo] // interface, and will write exactly object.BinarySize() bytes on w. // // Unless w implements the [buffer.Writer] interface (see lattigo/utils/buffer/writer.go), diff --git a/core/rlwe/metadata.go b/core/rlwe/metadata.go index 7b614feb..dbbd3465 100644 --- a/core/rlwe/metadata.go +++ b/core/rlwe/metadata.go @@ -162,7 +162,7 @@ func (m PlaintextMetaData) BinarySize() int { return 61 + m.Scale.BinarySize() } -// [WriteTo] writes the object on an [io.Writer]. It implements the [io.WriterTo] +// WriteTo writes the object on an [io.Writer]. It implements the [io.WriterTo] // interface, and will write exactly object.BinarySize() bytes on w. // // Unless w implements the [buffer.Writer] interface (see lattigo/utils/buffer/writer.go), @@ -282,7 +282,7 @@ func (m *CiphertextMetaData) BinarySize() int { return 38 } -// [WriteTo] writes the object on an [io.Writer]. It implements the [io.WriterTo] +// WriteTo writes the object on an [io.Writer]. It implements the [io.WriterTo] // interface, and will write exactly object.BinarySize() bytes on w. // // Unless w implements the [buffer.Writer] interface (see lattigo/utils/buffer/writer.go),