bjorn 7 سال پیش
والد
کامیت
d8741fd9e8
2فایلهای تغییر یافته به همراه3 افزوده شده و 3 حذف شده
  1. 1 1
      api/init.lua
  2. 2 2
      api/lovr/thread/Channel/init.lua

+ 1 - 1
api/init.lua

@@ -18837,7 +18837,7 @@ return {
         {
           name = "Channel",
           summary = "A message channel for communicating between threads.",
-          description = "A Channel is an object used to communicate between `Thread` objects.  Channels are obtained by name using `lovr.thread.getChannel`.  Different threads can send messages on the same Channel to communicate with each other.  Messages can be sent and received on a Channel using `Channel:push` and `Channel:pop`.  The following types of data that can be passed through Channels: nil, boolean, number, string, and any LÖVR object.",
+          description = "A Channel is an object used to communicate between `Thread` objects.  Channels are obtained by name using `lovr.thread.getChannel`.  Different threads can send messages on the same Channel to communicate with each other.  Messages can be sent and received on a Channel using `Channel:push` and `Channel:pop`.  The following types of data can be passed through Channels: nil, boolean, number, string, and any LÖVR object.",
           key = "Channel",
           module = "lovr.thread",
           methods = {

+ 2 - 2
api/lovr/thread/Channel/init.lua

@@ -4,8 +4,8 @@ return {
     A Channel is an object used to communicate between `Thread` objects.  Channels are obtained by
     name using `lovr.thread.getChannel`.  Different threads can send messages on the same Channel to
     communicate with each other.  Messages can be sent and received on a Channel using
-    `Channel:push` and `Channel:pop`.  The following types of data that can be passed through
-    Channels: nil, boolean, number, string, and any LÖVR object.
+    `Channel:push` and `Channel:pop`.  The following types of data can be passed through Channels:
+    nil, boolean, number, string, and any LÖVR object.
   ]],
   constructor = 'lovr.thread.getChannel'
 }