Skip to content

Commit

Permalink
generate-include-scripts (minor): fix printed string
Browse files Browse the repository at this point in the history
  • Loading branch information
smoothdeveloper committed Jul 2, 2016
1 parent 1282e84 commit 3a45243
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Paket.Core/ScriptGeneration.fs
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ module ScriptGeneration =
let escape =
// /!\ /!\ /!\ TODO escape text /!\ /!\ /!\
id
sprintf @"printfn ""%s\"" " (escape text)
sprintf @"printfn ""%s"" " (escape text)
]

let text =
Expand All @@ -188,7 +188,7 @@ module ScriptGeneration =
let escape =
// /!\ /!\ /!\ TODO escape text /!\ /!\ /!\
id
sprintf @"System.Console.WriteLine(""%s\""); " (escape text)
sprintf @"System.Console.WriteLine(""%s""); " (escape text)
]

let text =
Expand Down

0 comments on commit 3a45243

Please sign in to comment.