summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorPratik Karki <predatoramigo@gmail.com>2018-02-28 16:56:32 +0545
committerGitHub <noreply@github.com>2018-02-28 16:56:32 +0545
commit7a90605db0a876cb44b7ab9883dbe7dce4683de3 (patch)
tree9f4ebaee3aeb3835b950f4804669066f63769bbb
parent5cf4dcf1bd718c3e36433ac37e2c41c02372c670 (diff)
Fix #3060
-rw-r--r--julia.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/julia.html.markdown b/julia.html.markdown
index 85033aa6..9e28452f 100644
--- a/julia.html.markdown
+++ b/julia.html.markdown
@@ -98,7 +98,7 @@ false
# You can put any Julia expression inside the parentheses.
# Another way to format strings is the printf macro.
-@printf "%d is less than %f" 4.5 5.3 # 5 is less than 5.300000
+@printf "%d is less than %f" 4.5 5.3 # 4.5 is less than 5.300000
# Printing is easy
println("I'm Julia. Nice to meet you!")