about summary refs log tree commit diff
path: root/pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix
diff options
context:
space:
mode:
authorJason Yundt <jason@jasonyundt.email>2023-02-01 15:53:47 -0500
committerJason Yundt <jason@jasonyundt.email>2023-02-06 07:24:42 -0500
commitb1bb9bb6c8a378dec6317c20281fd04b060016f2 (patch)
tree1ded14ebda1dbdfa0e2711cb0679c0adc36d405c /pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix
parent3371560da86fecbefae15268d60e33768b465362 (diff)
downloadnixlib-b1bb9bb6c8a378dec6317c20281fd04b060016f2.tar
nixlib-b1bb9bb6c8a378dec6317c20281fd04b060016f2.tar.gz
nixlib-b1bb9bb6c8a378dec6317c20281fd04b060016f2.tar.bz2
nixlib-b1bb9bb6c8a378dec6317c20281fd04b060016f2.tar.lz
nixlib-b1bb9bb6c8a378dec6317c20281fd04b060016f2.tar.xz
nixlib-b1bb9bb6c8a378dec6317c20281fd04b060016f2.tar.zst
nixlib-b1bb9bb6c8a378dec6317c20281fd04b060016f2.zip
treewide: fix backwards smart apostrophes
According to the Unicode Standard, you should use U+2019 RIGHT SINGLE
QUOTATION MARK for apostrophes [1]. Before this change, some of the text
in this repo would use U+2018 LEFT SINGLE QUOTATION MARKs instead.

[1]: https://www.unicode.org/versions/Unicode15.0.0/ch06.pdf#G12411
Diffstat (limited to 'pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix')
-rw-r--r--pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix b/pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix
index 941f95c07fac..903b177efaff 100644
--- a/pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix
+++ b/pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix
@@ -125,12 +125,12 @@ self: super: {
   liquid-vector = markBroken super.liquid-vector;
   liquidhaskell = markBroken super.liquidhaskell;
 
-  # This became a core library in ghc 8.10., so we don‘t have an "exception" attribute anymore.
+  # This became a core library in ghc 8.10., so we don’t have an "exception" attribute anymore.
   exceptions = super.exceptions_0_10_7;
 
   ormolu = super.ormolu_0_2_0_0;
 
-  # vector 0.12.2 indroduced doctest checks that don‘t work on older compilers
+  # vector 0.12.2 indroduced doctest checks that don’t work on older compilers
   vector = dontCheck super.vector;
 
   ghc-api-compat = doDistribute (unmarkBroken super.ghc-api-compat_8_6);
@@ -143,7 +143,7 @@ self: super: {
 
   ghc-lib-parser = self.ghc-lib-parser_8_10_7_20220219;
 
-  # ghc versions which don‘t match the ghc-lib-parser-ex version need the
+  # ghc versions which don’t match the ghc-lib-parser-ex version need the
   # additional dependency to compile successfully.
   ghc-lib-parser-ex = addBuildDepend self.ghc-lib-parser self.ghc-lib-parser-ex_8_10_0_24;