aboutsummaryrefslogtreecommitdiff
path: root/TextFormat.md
diff options
context:
space:
mode:
authorEnrico Bacis <enrico.bacis@gmail.com>2017-02-01 01:40:29 +0100
committerDan Gohman <sunfish@mozilla.com>2017-01-31 16:40:29 -0800
commit63ffab64969099a2b8d3e6214acb7dd64a4f2866 (patch)
treeebd729ab4602ddfff4dd0a962e2797129f600768 /TextFormat.md
parenta51d19cca680ba40fa48abaa17da32e037438fbd (diff)
downloadnanowasm-design-63ffab64969099a2b8d3e6214acb7dd64a4f2866.tar.gz
fix typo in TextFormat.md C sample (#965)
Diffstat (limited to 'TextFormat.md')
-rw-r--r--TextFormat.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/TextFormat.md b/TextFormat.md
index 29d6880..9276d0c 100644
--- a/TextFormat.md
+++ b/TextFormat.md
@@ -26,7 +26,7 @@ int factorial(int n) {
if (n == 0)
return 1;
else
- return n * fac(n-1);
+ return n * factorial(n-1);
}</pre></td>
<td><pre>
20 00