From fba6ccb2a3a677663296815fab3c235dc8d0a54b Mon Sep 17 00:00:00 2001 From: Andrew Gerrand Date: Tue, 15 Apr 2014 11:43:38 +1000 Subject: go.blog: fix build; add "// +build OMIT" to many samples We use OMIT instead of ignore so such lines will be omitted from present output. LGTM=bradfitz R=golang-codereviews, bradfitz CC=golang-codereviews https://golang.org/cl/87890045 --- content/go-maps-in-action/list.go | 2 ++ content/go-maps-in-action/people.go | 2 ++ 2 files changed, 4 insertions(+) (limited to 'content/go-maps-in-action') diff --git a/content/go-maps-in-action/list.go b/content/go-maps-in-action/list.go index 09feeae..02bea2c 100644 --- a/content/go-maps-in-action/list.go +++ b/content/go-maps-in-action/list.go @@ -2,6 +2,8 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. +// +build OMIT + package main import "fmt" diff --git a/content/go-maps-in-action/people.go b/content/go-maps-in-action/people.go index e724915..ff5d9e3 100644 --- a/content/go-maps-in-action/people.go +++ b/content/go-maps-in-action/people.go @@ -2,6 +2,8 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. +// +build OMIT + package main import "fmt" -- cgit v1.2.3