Skip to content
This repository was archived by the owner on Aug 1, 2023. It is now read-only.

Commit 3f2566c

Browse files
committed
Capitalize "Gophercloud" consistently.
1 parent 220b7df commit 3f2566c

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
1-
# gophercloud: the OpenStack SDK for Go
1+
# Gophercloud: the OpenStack SDK for Go
22
[![Build Status](https://travis-ci.org/rackspace/gophercloud.svg?branch=master)](https://travis-ci.org/rackspace/gophercloud)
33

4-
gophercloud is a flexible SDK that allows you to consume and work with OpenStack
4+
Gophercloud is a flexible SDK that allows you to consume and work with OpenStack
55
clouds in a simple and idiomatic way using golang. Many services are supported,
66
including Compute, Block Storage, Object Storage, Networking, and Identity.
77
Each service API is backed with getting started guides, code samples, reference
88
documentation, unit tests and acceptance tests.
99

1010
## Useful links
1111

12-
* [gophercloud homepage](http://gophercloud.io)
12+
* [Gophercloud homepage](http://gophercloud.io)
1313
* [Reference documentation](http://godoc.org/github.com/rackspace/gophercloud)
1414
* [Getting started guides](http://gophercloud.io/docs)
1515
* [Effective Go](https://golang.org/doc/effective_go.html)
1616

1717
## How to install
1818

1919
Before installing, you need to ensure that your [GOPATH environment variable](https://golang.org/doc/code.html#GOPATH)
20-
is pointing to an appropriate directory where you want to install gophercloud:
20+
is pointing to an appropriate directory where you want to install Gophercloud:
2121

2222
```bash
2323
mkdir $HOME/go
@@ -27,7 +27,7 @@ export GOPATH=$HOME/go
2727
To protect yourself against changes in your dependencies, we highly recommend choosing a
2828
[dependency management solution](https://code.google.com/p/go-wiki/wiki/PackageManagementTools) for
2929
your projects, such as [godep](https://github.com/tools/godep). Once this is set up, you can install
30-
gophercloud as a dependency like so:
30+
Gophercloud as a dependency like so:
3131

3232
```bash
3333
go get github.com/rackspace/gophercloud
@@ -67,9 +67,9 @@ prompted for your password.
6767
### Authentication
6868

6969
Once you have access to your credentials, you can begin plugging them into
70-
gophercloud. The next step is authentication, and this is handled by a base
70+
Gophercloud. The next step is authentication, and this is handled by a base
7171
"Provider" struct. To get one, you can either pass in your credentials
72-
explicitly, or tell gophercloud to use environment variables:
72+
explicitly, or tell Gophercloud to use environment variables:
7373

7474
```go
7575
import (

0 commit comments

Comments
 (0)