summaryrefslogtreecommitdiffstats
path: root/doc/CodingStyle
diff options
context:
space:
mode:
authorJiri Moskovcak <jmoskovc@redhat.com>2009-08-06 16:19:07 +0200
committerJiri Moskovcak <jmoskovc@redhat.com>2009-08-06 16:19:07 +0200
commit84348ccea878d509f838927e1bf393e5443d3ac8 (patch)
treed7dc8bdc80b18a6137f94415761ec95c1df8e005 /doc/CodingStyle
parent9a3268d970142f0dfb4e3e77c66c9637bf87fbda (diff)
parent26c6665308b5a99d02308099118b23b2716dacc0 (diff)
downloadabrt-84348ccea878d509f838927e1bf393e5443d3ac8.tar.gz
abrt-84348ccea878d509f838927e1bf393e5443d3ac8.tar.xz
abrt-84348ccea878d509f838927e1bf393e5443d3ac8.zip
Merge branch 'master' of ssh://git.fedorahosted.org/git/abrt
Conflicts: lib/CommLayer/DBusServerProxy.h
Diffstat (limited to 'doc/CodingStyle')
-rw-r--r--doc/CodingStyle6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/CodingStyle b/doc/CodingStyle
index 2cc2cf6..3a254b7 100644
--- a/doc/CodingStyle
+++ b/doc/CodingStyle
@@ -8,7 +8,7 @@ Coding style used in abrt
1.2 Method
-----------
1.2.1 method starts witch a capital letter
-1.2.2 method name can contain only letters
+1.2.2 method name can contain only letters
1.2.3 parameter of a method has to start with the letter 'p'
1.3 Attribute
@@ -46,8 +46,8 @@ class CAwesomeClass
COtherClass* m_pOtherClass;
void PrivateFunction(int pParameter);
public:
- CAwesomeClass(std::string pName) :
- m_sName(pName), m_pOtherClass(NULL)
+ CAwesomeClass(std::string pName) :
+ m_sName(pName), m_pOtherClass(NULL)
{}
};