11OpenStack 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
88General
99-------
@@ -27,7 +27,7 @@ Calling Methods
2727---------------
2828
2929Deviation! 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
3131line all arguments will then be vertically aligned. Use the same convention
3232used with other data structure literals and terminate the method call with
3333the 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.
8787Python 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:
9797Running 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
102102The testing system is based on a combination of tox and testr. If you just
103103want to run the whole suite, run `tox ` and all will be fine. However, if
0 commit comments