summaryrefslogtreecommitdiffhomepage
path: root/julia.html.markdown
diff options
context:
space:
mode:
authorMartijn Visser <mgvisser@gmail.com>2018-08-14 19:08:01 +0200
committerMartijn Visser <mgvisser@gmail.com>2018-08-14 19:08:01 +0200
commit912a51c8ba87cfea5c9eb0c3285636e91e7c0720 (patch)
tree7af7adccb57437979e643193869731798b28081f /julia.html.markdown
parente18bab117b34f34d7909474928f8d0a713b8df15 (diff)
remove some trailing spaces
Diffstat (limited to 'julia.html.markdown')
-rw-r--r--julia.html.markdown8
1 files changed, 4 insertions, 4 deletions
diff --git a/julia.html.markdown b/julia.html.markdown
index 6964c6c6..8cbe3d5e 100644
--- a/julia.html.markdown
+++ b/julia.html.markdown
@@ -566,9 +566,9 @@ subtypes(Cat) # => 0-element Array{Any,1}
subtypes(AbstractString) # 6-element Array{Union{DataType, UnionAll},1}:
# Base.SubstitutionString
# Base.Test.GenericString
- # DirectIndexString
- # RevString
- # String
+ # DirectIndexString
+ # RevString
+ # String
# SubString
# Every type has a super type; use the `supertype` function to get it.
@@ -680,7 +680,7 @@ fight(Lion("balooga!"), Panther()) # => prints The victorious cat says grrr
try
fight(Panther(), Lion("RAWR"))
catch e
- println(e)
+ println(e)
# => MethodError(fight, (Panther("green"), Lion("green", "RAWR")), 0x000000000000557b)
end