From 0d418a8d582518bdd0fc8f2a40ed9529959aba19 Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Sun, 10 Mar 2019 17:25:06 -0700 Subject: [PATCH] Update and rename CONTRIBUTING.rst to CONTRIBUTING.md --- CONTRIBUTING.md | 12 ++++++++++++ CONTRIBUTING.rst | 12 ------------ 2 files changed, 12 insertions(+), 12 deletions(-) create mode 100644 CONTRIBUTING.md delete mode 100644 CONTRIBUTING.rst diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 00000000..535e1af4 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,12 @@ +Contributing to {fmt} +===================== + +All C++ code must adhere to [Google C++ Style Guide]( +https://google.github.io/styleguide/cppguide.html) with the following +exceptions: + +* Exceptions are permitted +* snake_case should be used instead of UpperCamelCase for function and type + names + +Thanks for contributing! diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst deleted file mode 100644 index 899b6460..00000000 --- a/CONTRIBUTING.rst +++ /dev/null @@ -1,12 +0,0 @@ -Contributing to fmt -=================== - -All C++ code must adhere to `Google C++ Style Guide -`_ with the following -exceptions: - -* Exceptions are permitted -* snake_case should be used instead of UpperCamelCase for function and type - names - -Thanks for contributing!