Browse Source

Small typo in ftp server fails compilation

There sneaked in an 'o' at the beginning of the file
Gregor 5 years ago
parent
commit
520b853bf4
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lua_modules/ftp/ftpserver.lua

+ 1 - 1
lua_modules/ftp/ftpserver.lua

@@ -1,4 +1,4 @@
-o--[[ A simple ftp server
+--[[ A simple ftp server
 
  This is my implementation of a FTP server using Github user Neronix's
  example as inspriration, but as a cleaner Lua implementation that has been