Skip to content

Commit a241443

Browse files
0rpheetomjaguarpaw
authored andcommitted
Fix 'since' tags in System.Process.Environment.OsString
1 parent 1c2899b commit a241443

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

System/Process/Environment/OsString.hs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
-- | Miscellaneous information about the system environment, for 'OsString'.
55
--
6-
-- @since X.Y.Z
6+
-- @since 1.6.26.0
77
module System.Process.Environment.OsString (
88
getArgs,
99
getEnv,
@@ -24,18 +24,18 @@ import qualified System.Posix.Env.PosixString as Platform
2424

2525
-- | 'System.Environment.getArgs' for 'OsString'.
2626
--
27-
-- @since X.Y.Z
27+
-- @since 1.6.26.0
2828
getArgs :: IO [OsString]
2929
getArgs = coerce Platform.getArgs
3030

3131
-- | 'System.Environment.getEnv' for 'OsString'.
3232
--
33-
-- @since X.Y.Z
33+
-- @since 1.6.26.0
3434
getEnv :: OsString -> IO (Maybe OsString)
3535
getEnv = coerce Platform.getEnv
3636

3737
-- | 'System.Environment.getEnvironment' for 'OsString'.
3838
--
39-
-- @since X.Y.Z
39+
-- @since 1.6.26.0
4040
getEnvironment :: IO [(OsString, OsString)]
4141
getEnvironment = coerce Platform.getEnvironment

0 commit comments

Comments
 (0)