From 3b3ea2944cb366bb7d9ec6236b259419674358a7 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Wed, 18 Jun 2014 20:46:46 -0700 Subject: [PATCH] terraform: comments --- terraform/diff.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/terraform/diff.go b/terraform/diff.go index f184b3093..e8f428d0e 100644 --- a/terraform/diff.go +++ b/terraform/diff.go @@ -11,6 +11,9 @@ import ( "sync" ) +// The format byte is prefixed into the diff file format so that we have +// the ability in the future to change the file format if we want for any +// reason. const diffFormatByte byte = 1 // Diff tracks the differences between resources to apply.