diff --git a/README.md b/README.md index e1aba99..5c6f858 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ General purpose "operation system" for [ComputerCraft](https://tweaked.cc/) buil - Hardware abstraction - Virtual screens to switch between multiple GUI apps - Reactive UI framework -- Solid base to easily applications +- Solid base to easily add applications # Building diff --git a/src/kernel/Timer.hx b/src/kernel/Timer.hx index 945c789..4a36d58 100644 --- a/src/kernel/Timer.hx +++ b/src/kernel/Timer.hx @@ -5,7 +5,7 @@ import cc.OS; using tink.CoreApi; /** - Wrapper class for using timer. + Wrapper class for using timers. **/ class Timer { private final timerID:Int; diff --git a/src/kernel/http/HTTPRequest.hx b/src/kernel/http/HTTPRequest.hx index a708bc1..3b39b62 100644 --- a/src/kernel/http/HTTPRequest.hx +++ b/src/kernel/http/HTTPRequest.hx @@ -3,7 +3,7 @@ package kernel.http; using tink.CoreApi; /** - Wrapper for the native + Wrapper for the native HTTP request function. **/ class Http { public static function request(url:String,?body:String,?options: String):Future> { diff --git a/src/kernel/log/Log.hx b/src/kernel/log/Log.hx index 53d51e7..917b1aa 100644 --- a/src/kernel/log/Log.hx +++ b/src/kernel/log/Log.hx @@ -8,7 +8,7 @@ import lib.Debug; using tink.CoreApi; /** - Log messages to specified output. + Central logging system. **/ class Log { public static var instance:Log; diff --git a/src/kernel/net/Loopback.hx b/src/kernel/net/Loopback.hx index 1331e35..07e29e8 100644 --- a/src/kernel/net/Loopback.hx +++ b/src/kernel/net/Loopback.hx @@ -4,7 +4,7 @@ import kernel.log.Log; using tink.CoreApi; /** - Virtual network interface that handle + Virtual network interface that handles packages to the same id as the sender. **/ class Loopback implements INetworkInterface { public static final instance:Loopback = new Loopback();