summaryrefslogtreecommitdiff
path: root/layer.go
diff options
context:
space:
mode:
Diffstat (limited to 'layer.go')
-rw-r--r--layer.go2
1 files changed, 0 insertions, 2 deletions
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})