don't drink and code

This commit is contained in:
Djeeberjr 2023-03-22 00:57:41 +01:00
parent 9f6bdf6851
commit 4ae6fb4bc7
5 changed files with 5 additions and 5 deletions

View File

@ -7,7 +7,7 @@ General purpose "operation system" for [ComputerCraft](https://tweaked.cc/) buil
- Hardware abstraction - Hardware abstraction
- Virtual screens to switch between multiple GUI apps - Virtual screens to switch between multiple GUI apps
- Reactive UI framework - Reactive UI framework
- Solid base to easily applications - Solid base to easily add applications
# Building # Building

View File

@ -5,7 +5,7 @@ import cc.OS;
using tink.CoreApi; using tink.CoreApi;
/** /**
Wrapper class for using timer. Wrapper class for using timers.
**/ **/
class Timer { class Timer {
private final timerID:Int; private final timerID:Int;

View File

@ -3,7 +3,7 @@ package kernel.http;
using tink.CoreApi; using tink.CoreApi;
/** /**
Wrapper for the native Wrapper for the native HTTP request function.
**/ **/
class Http { class Http {
public static function request(url:String,?body:String,?options: String):Future<Outcome<HTTPResponse,HTTPFailure>> { public static function request(url:String,?body:String,?options: String):Future<Outcome<HTTPResponse,HTTPFailure>> {

View File

@ -8,7 +8,7 @@ import lib.Debug;
using tink.CoreApi; using tink.CoreApi;
/** /**
Log messages to specified output. Central logging system.
**/ **/
class Log { class Log {
public static var instance:Log; public static var instance:Log;

View File

@ -4,7 +4,7 @@ import kernel.log.Log;
using tink.CoreApi; 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 { class Loopback implements INetworkInterface {
public static final instance:Loopback = new Loopback(); public static final instance:Loopback = new Loopback();