aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarl Schultz <karl@lunarg.com>2016-04-28 14:20:13 -0600
committerKarl Schultz <karl@lunarg.com>2016-04-28 14:20:13 -0600
commitf62d28cda78358e5e69a533d57201f756e0051c3 (patch)
tree2a615e3999515ad6b4c0d4fbe8f4e8a1b41dd8a4
parent43ed298ad8e5c55df54f41abb37476e9e11acc37 (diff)
downloadusermoji-f62d28cda78358e5e69a533d57201f756e0051c3.tar.xz
docs: #444 Fix clang-format instructions
-rw-r--r--CONTRIBUTING.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index f3933ec7..20fa788f 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -36,10 +36,10 @@ that might arise with Vulkan-LoaderAndValidationLayers components if they were o
* A sample git workflow may look like:
> # Make changes to the source.
-> $ git add .
-> $ clang-format -style=file -i < list of changed code files >
+> $ git add -u .
+> $ git clang-format --style=file
> # Check to see if clang-format made any changes and if they are OK.
-> $ git add .
+> $ git add -u .
> $ git commit
#### **Testing**