Skip to content

Commit 643ebd6

Browse files
committed
update file extension
1 parent 2c53145 commit 643ebd6

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

psc-docs/Main.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ isTypeInstanceDeclaration _ = False
215215
inputFile :: Parser FilePath
216216
inputFile = strArgument $
217217
metavar "FILE"
218-
<> help "The input .ps file(s)"
218+
<> help "The input .purs file(s)"
219219

220220
includeHeirarcy :: Parser Bool
221221
includeHeirarcy = switch $

psc-make/Main.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ mkdirp = createDirectoryIfMissing True . takeDirectory
101101
inputFile :: Parser FilePath
102102
inputFile = strArgument $
103103
metavar "FILE"
104-
<> help "The input .ps file(s)"
104+
<> help "The input .purs file(s)"
105105

106106
outputDirectory :: Parser FilePath
107107
outputDirectory = strOption $

psc/Main.hs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ useStdIn = switch $
147147
inputFile :: Parser FilePath
148148
inputFile = strArgument $
149149
metavar "FILE"
150-
<> help "The input .ps file(s)"
150+
<> help "The input .purs file(s)"
151151

152152
outputFile :: Parser (Maybe FilePath)
153153
outputFile = optional . strOption $
@@ -159,7 +159,7 @@ externsFile :: Parser (Maybe FilePath)
159159
externsFile = optional . strOption $
160160
short 'e'
161161
<> long "externs"
162-
<> help "The output .e.ps file"
162+
<> help "The output .e.purs file"
163163

164164
noPrefix :: Parser Bool
165165
noPrefix = switch $

0 commit comments

Comments
 (0)