Skip to content

Commit 6a33e9c

Browse files
committed
Switch module namespace from Foreign.Lua to HsLua
1 parent c88a4eb commit 6a33e9c

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

hslua-module-doclayout.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ library
3434
, text >= 1.0 && < 1.3
3535
default-language: Haskell2010
3636
hs-source-dirs: src
37-
exposed-modules: Foreign.Lua.Module.DocLayout
37+
exposed-modules: HsLua.Module.DocLayout
3838
ghc-options: -Wall
3939
-Wcompat
4040
-Widentities
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
{-# LANGUAGE TypeApplications #-}
66
{-# OPTIONS_GHC -fno-warn-orphans #-}
77
{-|
8-
Module : Foreign.Lua.Module.DocLayout
8+
Module : HsLua.Module.DocLayout
99
Copyright : © 2020-2021 Albert Krewinkel
1010
License : MIT
1111
Maintainer : Albert Krewinkel <albert+hslua@zeitkraut.de>
@@ -15,7 +15,7 @@ type is specialized to @'Text'@.
1515
1616
This module defines orphan instances for @Doc Text@.
1717
-}
18-
module Foreign.Lua.Module.DocLayout (
18+
module HsLua.Module.DocLayout (
1919
-- * Module
2020
documentedModule
2121
, pushModule

test/test-hslua-module-doclayout.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ module Main (main) where
1212

1313
import Control.Monad (void)
1414
import HsLua (Lua)
15-
import Foreign.Lua.Module.DocLayout (documentedModule)
15+
import HsLua.Module.DocLayout (documentedModule)
1616
import Test.Tasty (TestTree, defaultMain, testGroup)
1717
import Test.Tasty.HUnit (assertEqual, testCase)
1818
import Test.Tasty.Lua (translateResultsFromFile)

0 commit comments

Comments
 (0)