summaryrefslogtreecommitdiffstats
path: root/sample.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'sample.cpp')
-rw-r--r--sample.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/sample.cpp b/sample.cpp
index 451c6c4..72a120a 100644
--- a/sample.cpp
+++ b/sample.cpp
@@ -3,7 +3,7 @@
int Factorial(int n)
{
int result = 1;
- for (int i=1; i<=n; i++)
+ for (int i = 1; i <= n; i++)
{
result *= i;
}
OpenPOWER on IntegriCloud