Skip to content

Commit c946192

Browse files
committed
Update URL for global hacking doc and fix typos
* related to I579e7c889f3addc2cd40bce0c584bbc70bf435e2 Change-Id: I519155d0a47564ce18a9cd930378a3c4feaa7a77
1 parent e118f21 commit c946192

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

HACKING.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
OpenStack Style Commandments
22
============================
33

4-
Step 0: Read https://github.com/openstack-dev/hacking/blob/master/HACKING.rst
5-
Step 1: Read http://www.python.org/dev/peps/pep-0008/ one more time
6-
Step 2: Read on
4+
- Step 1: Read the OpenStack Style Commandments
5+
http://docs.openstack.org/developer/hacking/
6+
- Step 2: Read on
77

88
General
99
-------
@@ -27,7 +27,7 @@ Calling Methods
2727
---------------
2828

2929
Deviation! When breaking up method calls due to the 79 char line length limit,
30-
use the alternate 4 space indent. With the frist argument on the succeeding
30+
use the alternate 4 space indent. With the first argument on the succeeding
3131
line all arguments will then be vertically aligned. Use the same convention
3232
used with other data structure literals and terminate the method call with
3333
the last argument line ending with a comma and the closing paren on its own
@@ -87,7 +87,7 @@ commandline arguments, etc.) should be presumed to be encoded as utf-8.
8787
Python 3.x Compatibility
8888
------------------------
8989

90-
OpenStackClient strives to be Python 3.3 compatibile. Common guidelines:
90+
OpenStackClient strives to be Python 3.3 compatible. Common guidelines:
9191

9292
* Convert print statements to functions: print statements should be converted
9393
to an appropriate log or other output mechanism.
@@ -97,7 +97,7 @@ OpenStackClient strives to be Python 3.3 compatibile. Common guidelines:
9797
Running Tests
9898
-------------
9999

100-
Note: Oh boy, are we behing on writing tests. But they are coming!
100+
Note: Oh boy, are we behind on writing tests. But they are coming!
101101

102102
The testing system is based on a combination of tox and testr. If you just
103103
want to run the whole suite, run `tox` and all will be fine. However, if

0 commit comments

Comments
 (0)