Touching up documentation
diff --git a/openstack/networking/v2/extensions/lbaas/pools/doc.go b/openstack/networking/v2/extensions/lbaas/pools/doc.go
deleted file mode 100644
index 058ebec..0000000
--- a/openstack/networking/v2/extensions/lbaas/pools/doc.go
+++ /dev/null
@@ -1 +0,0 @@
-package pools
diff --git a/openstack/networking/v2/extensions/lbaas/pools/requests.go b/openstack/networking/v2/extensions/lbaas/pools/requests.go
index 9e8fe68..080438d 100644
--- a/openstack/networking/v2/extensions/lbaas/pools/requests.go
+++ b/openstack/networking/v2/extensions/lbaas/pools/requests.go
@@ -85,6 +85,7 @@
 	})
 }
 
+// Supported attributes for create/update operations.
 const (
 	LBMethodRoundRobin       = "ROUND_ROBIN"
 	LBMethodLeastConnections = "LEAST_CONNECTIONS"
diff --git a/openstack/networking/v2/extensions/lbaas/pools/results.go b/openstack/networking/v2/extensions/lbaas/pools/results.go
index b077c75..6cec6df 100644
--- a/openstack/networking/v2/extensions/lbaas/pools/results.go
+++ b/openstack/networking/v2/extensions/lbaas/pools/results.go
@@ -8,6 +8,11 @@
 	"github.com/rackspace/gophercloud/pagination"
 )
 
+// Pool represents a logical set of devices, such as web servers, that you
+// group together to receive and process traffic. The load balancing function
+// chooses a member of the pool according to the configured load balancing
+// method to handle the new requests or connections received on the VIP address.
+// There is only one pool per virtual IP.
 type Pool struct {
 	// The status of the pool. Indicates whether the pool is operational.
 	Status string
@@ -96,7 +101,7 @@
 	return len(is) == 0, nil
 }
 
-// ExtractRouters accepts a Page struct, specifically a RouterPage struct,
+// ExtractPools accepts a Page struct, specifically a RouterPage struct,
 // and extracts the elements into a slice of Router structs. In other words,
 // a generic collection is mapped into a relevant slice.
 func ExtractPools(page pagination.Page) ([]Pool, error) {
diff --git a/openstack/networking/v2/extensions/lbaas/vips/doc.go b/openstack/networking/v2/extensions/lbaas/vips/doc.go
deleted file mode 100644
index 5320e81..0000000
--- a/openstack/networking/v2/extensions/lbaas/vips/doc.go
+++ /dev/null
@@ -1 +0,0 @@
-package vips