summaryrefslogtreecommitdiff
path: root/libraries/base/System
diff options
context:
space:
mode:
authorHécate Moonlight <hecate+gitlab@glitchbra.in>2022-02-25 23:33:29 +0100
committerMarge Bot <ben+marge-bot@smart-cactus.org>2022-02-28 07:14:42 -0500
commitd734ef8f78203b856dcfaf19eaebfed6ec623850 (patch)
tree6b6c1b6425395276faad39fba4250c8cd92af321 /libraries/base/System
parent38cb920e3c7bea7348a245c8602ea9562622f9cc (diff)
downloadhaskell-d734ef8f78203b856dcfaf19eaebfed6ec623850.tar.gz
Make modules in base stable.
fix #18963
Diffstat (limited to 'libraries/base/System')
-rw-r--r--libraries/base/System/Console/GetOpt.hs2
-rw-r--r--libraries/base/System/Info.hs2
-rw-r--r--libraries/base/System/Mem/StableName.hs2
-rw-r--r--libraries/base/System/Mem/Weak.hs2
-rw-r--r--libraries/base/System/Timeout.hs2
5 files changed, 5 insertions, 5 deletions
diff --git a/libraries/base/System/Console/GetOpt.hs b/libraries/base/System/Console/GetOpt.hs
index 52a767b856..6785a6f965 100644
--- a/libraries/base/System/Console/GetOpt.hs
+++ b/libraries/base/System/Console/GetOpt.hs
@@ -7,7 +7,7 @@
-- License : BSD-style (see the file libraries/base/LICENSE)
--
-- Maintainer : libraries@haskell.org
--- Stability : experimental
+-- Stability : stable
-- Portability : portable
--
-- This library provides facilities for parsing the command-line options
diff --git a/libraries/base/System/Info.hs b/libraries/base/System/Info.hs
index 70284d44ef..39ef75bd0f 100644
--- a/libraries/base/System/Info.hs
+++ b/libraries/base/System/Info.hs
@@ -8,7 +8,7 @@
-- License : BSD-style (see the file libraries/base/LICENSE)
--
-- Maintainer : libraries@haskell.org
--- Stability : experimental
+-- Stability : stable
-- Portability : portable
--
-- Information about the characteristics of the host
diff --git a/libraries/base/System/Mem/StableName.hs b/libraries/base/System/Mem/StableName.hs
index 17392e98e3..d8bdbd87bb 100644
--- a/libraries/base/System/Mem/StableName.hs
+++ b/libraries/base/System/Mem/StableName.hs
@@ -7,7 +7,7 @@
-- License : BSD-style (see the file libraries/base/LICENSE)
--
-- Maintainer : libraries@haskell.org
--- Stability : experimental
+-- Stability : stable
-- Portability : non-portable
--
-- Stable names are a way of performing fast ( \(\mathcal{O}(1)\) ),
diff --git a/libraries/base/System/Mem/Weak.hs b/libraries/base/System/Mem/Weak.hs
index 654f18f655..d5fd14cf50 100644
--- a/libraries/base/System/Mem/Weak.hs
+++ b/libraries/base/System/Mem/Weak.hs
@@ -7,7 +7,7 @@
-- License : BSD-style (see the file libraries/base/LICENSE)
--
-- Maintainer : libraries@haskell.org
--- Stability : experimental
+-- Stability : stable
-- Portability : non-portable
--
-- In general terms, a weak pointer is a reference to an object that is
diff --git a/libraries/base/System/Timeout.hs b/libraries/base/System/Timeout.hs
index cfddccce3f..f3081e7082 100644
--- a/libraries/base/System/Timeout.hs
+++ b/libraries/base/System/Timeout.hs
@@ -8,7 +8,7 @@
-- License : BSD-style (see the file libraries/base/LICENSE)
--
-- Maintainer : libraries@haskell.org
--- Stability : experimental
+-- Stability : stable
-- Portability : non-portable
--
-- Attach a timeout event to arbitrary 'IO' computations.