From 95c9670a65a6f7c2b62759e9c6d80fe898622215 Mon Sep 17 00:00:00 2001 From: jpekkila Date: Fri, 14 Jun 2019 11:39:55 +0000 Subject: [PATCH] Updated coding conventions. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c358335..86afcaa 100644 --- a/README.md +++ b/README.md @@ -55,7 +55,7 @@ If you have clang-format, you may run `scripts/fix_style.sh`. This script will r #include "avoid_including_headers_here.h" /** Doxygen comments */ -void global_function(void); +void globalFunction(void); ``` @@ -84,7 +84,7 @@ local_function(const SomeStruct& constant_struct, SomeStruct* modified_struct) } void -global_function(void) +globalFunction(void) { return; }