From 4881f33bc220beea0ab6787f9f0e945b4c3c40dd Mon Sep 17 00:00:00 2001 From: "H. S. Teoh" Date: Tue, 12 Jan 2021 08:48:51 -0800 Subject: [PATCH] Update Readme.md to use `ubyte` instead of `byte`. Follow-up fix to PR#50. --- Readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Readme.md b/Readme.md index 403511d..31bb1b3 100644 --- a/Readme.md +++ b/Readme.md @@ -132,7 +132,7 @@ msg.readTuple!(typeof(args))().assertEqual(args); ``` ### Basic types These are the basic types supported by `ddbus`: -`bool`, `byte`, `short`, `ushort`, `int`, `uint`, `long`, `ulong`, `double`, `string`, `ObjectPath`, `InterfaceName`, `BusName` +`bool`, `ubyte`, `short`, `ushort`, `int`, `uint`, `long`, `ulong`, `double`, `string`, `ObjectPath`, `InterfaceName`, `BusName` ObjectPath, InterfaceName and BusName are typesafe wrappers or aliases around strings which should be used to ensure type-safety. They do not allow implicit casts to each other but can be manually converted to strings either by casting to string.