diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,9 @@
 # arch-web
 
+## 0.3.1
+
+Fix typo in license
+
 ## 0.3
 
 Migrate to SPDX License Identifiers
diff --git a/arch-web.cabal b/arch-web.cabal
--- a/arch-web.cabal
+++ b/arch-web.cabal
@@ -1,6 +1,6 @@
 cabal-version:   2.2
 name:            arch-web
-version:         0.3
+version:         0.3.1
 synopsis:        Arch Linux official and AUR web interface binding
 description:
   Arch Linux official and AUR web interface binding.
diff --git a/src/Web/ArchLinux/Types.hs b/src/Web/ArchLinux/Types.hs
--- a/src/Web/ArchLinux/Types.hs
+++ b/src/Web/ArchLinux/Types.hs
@@ -178,11 +178,11 @@
   | LGPL_3_0_only
   | LGPL_3_0_or_later
   | LGPLLR
-  | LPL_1_0
-  | LPL_1_1
-  | LPL_1_2
-  | LPL_1_3a
-  | LPL_1_3c
+  | LPPL_1_0
+  | LPPL_1_1
+  | LPPL_1_2
+  | LPPL_1_3a
+  | LPPL_1_3c
   | MPL_1_0
   | MPL_1_1
   | MPL_2_0
@@ -280,11 +280,11 @@
 licenseId LGPL_3_0_only = "LGPL-3.0-only"
 licenseId LGPL_3_0_or_later = "LGPL-3.0-or-later"
 licenseId LGPLLR = "LGPLLR"
-licenseId LPL_1_0 = "LPL-1.0"
-licenseId LPL_1_1 = "LPL-1.1"
-licenseId LPL_1_2 = "LPL-1.2"
-licenseId LPL_1_3a = "LPL-1.3a"
-licenseId LPL_1_3c = "LPL-1.3c"
+licenseId LPPL_1_0 = "LPPL-1.0"
+licenseId LPPL_1_1 = "LPPL-1.1"
+licenseId LPPL_1_2 = "LPPL-1.2"
+licenseId LPPL_1_3a = "LPPL-1.3a"
+licenseId LPPL_1_3c = "LPPL-1.3c"
 licenseId MPL_1_0 = "MPL-1.0"
 licenseId MPL_1_1 = "MPL-1.1"
 licenseId MPL_2_0 = "MPL-2.0"
@@ -381,11 +381,11 @@
 parseLicense "LGPL-3.0-only" = LGPL_3_0_only
 parseLicense "LGPL-3.0-or-later" = LGPL_3_0_or_later
 parseLicense "LGPLLR" = LGPLLR
-parseLicense "LPL-1.0" = LPL_1_0
-parseLicense "LPL-1.1" = LPL_1_1
-parseLicense "LPL-1.2" = LPL_1_2
-parseLicense "LPL-1.3a" = LPL_1_3a
-parseLicense "LPL-1.3c" = LPL_1_3c
+parseLicense "LPPL-1.0" = LPPL_1_0
+parseLicense "LPPL-1.1" = LPPL_1_1
+parseLicense "LPPL-1.2" = LPPL_1_2
+parseLicense "LPPL-1.3a" = LPPL_1_3a
+parseLicense "LPPL-1.3c" = LPPL_1_3c
 parseLicense "MPL-1.0" = MPL_1_0
 parseLicense "MPL-1.1" = MPL_1_1
 parseLicense "MPL-2.0" = MPL_2_0
