Skip to content

Commit

Permalink
newline fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Peter Kazazes committed Jul 13, 2014
1 parent 5676048 commit 999776a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions main.jl
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ for line in lines
if word != false
# begin reading definition
defining = true
defn = strcat(defn, replace(line, "Defn: ", ""))
replaced = replace(line, "Defn: ", "")
defn = "$defn$replaced"
end
continue
end
Expand All @@ -47,7 +48,7 @@ for line in lines
continue
end

defn = strcat(defn, line)
defn = "$defn $line"
end
end
end
Expand Down

0 comments on commit 999776a

Please sign in to comment.