]> Cypherpunks.ru repositories - gorecfile.git/blobdiff - w.go
Remove unnecessary docstrings
[gorecfile.git] / w.go
diff --git a/w.go b/w.go
index 880c905cbdbf7b4ccb915ffd350af66b63354751..63baaedad6f3afa0606ae7a7a70fed136b308b6a 100644 (file)
--- a/w.go
+++ b/w.go
@@ -15,7 +15,6 @@ You should have received a copy of the GNU General Public License
 along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */
 
-// GNU recutils'es recfiles parser on pure Go
 package recfile
 
 import (
@@ -31,7 +30,7 @@ func NewWriter(w io.StringWriter) *Writer {
        return &Writer{w}
 }
 
-func (w *Writer) RecordStart(fs ...Field) (written int, err error) {
+func (w *Writer) RecordStart() (written int, err error) {
        return w.w.WriteString("\n")
 }