bjorn 1 년 전
부모
커밋
1d8af179a7
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      guides/Plugins.md

+ 2 - 2
guides/Plugins.md

@@ -91,8 +91,8 @@ to have a Lua C function with a symbol named after the plugin:
 
     int luaopen_supermegaplugin(lua_State* L) {
       // This code gets run when the plugin is required,
-      // and anything it returns on the stack is used
-      // as the require's return value.
+      // and the value it leaves at the top of the stack
+      // is used as require's return value.
     }
 
 All of [Lua's rules](https://www.lua.org/manual/5.1/manual.html#pdf-package.loaders) for native