From b09a1c5eef4ec4c053c0ec22da4e9f147aae73e4 Mon Sep 17 00:00:00 2001 From: Kurt Jung Date: Tue, 7 Jul 2015 11:10:07 -0400 Subject: Convert sequential examples to ones that are bound to gofpdf methods. --- layer.go | 2 -- 1 file changed, 2 deletions(-) (limited to 'layer.go') diff --git a/layer.go b/layer.go index d567e37..bca364f 100644 --- a/layer.go +++ b/layer.go @@ -42,8 +42,6 @@ func (f *Fpdf) layerInit() { // display in the layer list. visible specifies whether the layer will be // initially visible. The return value is an integer ID that is used in a call // to BeginLayer(). -// -// Layers are demonstrated in tutorial 26. func (f *Fpdf) AddLayer(name string, visible bool) (layerID int) { layerID = len(f.layer.list) f.layer.list = append(f.layer.list, layerType{name: name, visible: visible}) -- cgit v1.2.1-24-ge1ad