initial migration from rackspace/gophercloud
diff --git a/results.go b/results.go
index 27fd1b6..8161a89 100644
--- a/results.go
+++ b/results.go
@@ -113,8 +113,8 @@
 // RFC3339Milli describes a common time format used by some API responses.
 const RFC3339Milli = "2006-01-02T15:04:05.999999Z"
 
-// Time format used in cloud orchestration
-const STACK_TIME_FMT = "2006-01-02T15:04:05"
+// StackFmtTime is the time format used in Heat (Orchestration).
+const StackFmtTime = "2006-01-02T15:04:05"
 
 /*
 Link is an internal type to be used in packages of collection resources that are
@@ -133,7 +133,7 @@
 ExtractNextURL is an internal function useful for packages of collection
 resources that are paginated in a certain way.
 
-It attempts attempts to extract the "next" URL from slice of Link structs, or
+It attempts to extract the "next" URL from slice of Link structs, or
 "" if no such URL is present.
 */
 func ExtractNextURL(links []Link) (string, error) {