From 54d0ea0378ffcd4eb42ee9d21140c8c5d82c3f01 Mon Sep 17 00:00:00 2001 From: Connor Olding Date: Thu, 14 Apr 2016 07:36:19 -0700 Subject: [PATCH] fix example paths --- README.md | 2 +- example.lua | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d7ed53b..dadeebf 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ Even this README is incomplete. Copy the lips directory to somewhere Lua's `package.path` can find it. If you're using it locally, you will need to write something like: ``` -package.path = package.path.."?/init.lua" +package.path = package.path..";?/init.lua" ``` or `require "lips.init"` directly. diff --git a/example.lua b/example.lua index 2b09976..d2d248a 100644 --- a/example.lua +++ b/example.lua @@ -1,3 +1,3 @@ -package.path = package.path..";./?/init.lua" +package.path = package.path..";?/init.lua" local lips = require "lips" lips('example.asm')