From fc0e6099fa683c365d26834405367d6256571fbb Mon Sep 17 00:00:00 2001 From: "Gary V. Vaughan" Date: Wed, 8 Jan 2014 16:55:32 +1300 Subject: [PATCH] html: case sensitive file systems require matching require args. * ldoc/html.lua: Make sure to `require 'pl.OrderedMap'` (with a capital 'O') to match the filename installed by penlight. Signed-off-by: Gary V. Vaughan --- ldoc/html.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ldoc/html.lua b/ldoc/html.lua index c6f8967..f138da8 100644 --- a/ldoc/html.lua +++ b/ldoc/html.lua @@ -19,7 +19,7 @@ local path = require 'pl.path' local stringx = require 'pl.stringx' local template = require 'pl.template' local tablex = require 'pl.tablex' -local OrderedMap = require 'pl.orderedMap' +local OrderedMap = require 'pl.OrderedMap' local tools = require 'ldoc.tools' local markup = require 'ldoc.markup' local prettify = require 'ldoc.prettify'