aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/lfs.c4
-rw-r--r--src/lfs.h2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/lfs.c b/src/lfs.c
index 886add0..be6977e 100644
--- a/src/lfs.c
+++ b/src/lfs.c
@@ -1,6 +1,6 @@
1/* 1/*
2** LuaFileSystem 2** LuaFileSystem
3** Copyright Kepler Project 2003 - 2016 (http://keplerproject.github.io/luafilesystem) 3** Copyright Kepler Project 2003 - 2017 (http://keplerproject.github.io/luafilesystem)
4** 4**
5** File system manipulation library. 5** File system manipulation library.
6** This library offers these functions: 6** This library offers these functions:
@@ -916,7 +916,7 @@ static int link_info (lua_State *L) {
916** Assumes the table is on top of the stack. 916** Assumes the table is on top of the stack.
917*/ 917*/
918static void set_info (lua_State *L) { 918static void set_info (lua_State *L) {
919 lua_pushliteral(L, "Copyright (C) 2003-2016 Kepler Project"); 919 lua_pushliteral(L, "Copyright (C) 2003-2017 Kepler Project");
920 lua_setfield(L, -2, "_COPYRIGHT"); 920 lua_setfield(L, -2, "_COPYRIGHT");
921 lua_pushliteral(L, "LuaFileSystem is a Lua library developed to complement the set of functions related to file systems offered by the standard Lua distribution"); 921 lua_pushliteral(L, "LuaFileSystem is a Lua library developed to complement the set of functions related to file systems offered by the standard Lua distribution");
922 lua_setfield(L, -2, "_DESCRIPTION"); 922 lua_setfield(L, -2, "_DESCRIPTION");
diff --git a/src/lfs.h b/src/lfs.h
index 7f7d2ab..4587564 100644
--- a/src/lfs.h
+++ b/src/lfs.h
@@ -1,6 +1,6 @@
1/* 1/*
2** LuaFileSystem 2** LuaFileSystem
3** Copyright Kepler Project 2003 - 2016 (http://keplerproject.github.io/luafilesystem) 3** Copyright Kepler Project 2003 - 2017 (http://keplerproject.github.io/luafilesystem)
4*/ 4*/
5 5
6/* Define 'chdir' for systems that do not implement it */ 6/* Define 'chdir' for systems that do not implement it */