From 075a64caf094f0538d8be955b2fe448c71479318 Mon Sep 17 00:00:00 2001 From: Ross Kinder Date: Sat, 28 Nov 2015 20:33:42 -0500 Subject: [PATCH] doc: fix typo --- cloudformation.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cloudformation.go b/cloudformation.go index bf00572..eb0f2ca 100644 --- a/cloudformation.go +++ b/cloudformation.go @@ -14,7 +14,7 @@ // Default: "example.com", // Description: "the top level DNS name for the service" // } -// t.AddResource("DataBucket", &AWSS3Bucket{ +// t.AddResource("DataBucket", &S3Bucket{ // BucketName: Join("-", *String("data"), *Ref("DnsName").String()) // }) // json.NewEncoder(os.Stdout).Encoder(t) @@ -37,13 +37,13 @@ // Top level objects in Cloudformation are called resources. They have // names like AWS::S3::Bucket and appear as values in the "Resources" // mapping. We remove the punctuation from the name to derive a golang -// structure name like AWSS3Bucket. +// structure name like S3Bucket. // // There other non-resource structures that are refered to either by // resources or by other structures. These objects have names with // spaces like "Amazon S3 Versioning Configuration". To derive a golang // type name the non-letter characters are removed to get -// AmazonS3VersioningConfiguration. +// S3VersioningConfiguration. // // Type System //