From d20adc2c5aee05adece929b3604bec1aaa8c439e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A1szl=C3=B3=20Monda?= Date: Wed, 6 Apr 2016 03:27:10 +0200 Subject: [PATCH] Update README.md --- config-serializer/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config-serializer/README.md b/config-serializer/README.md index e9b0a304..6a00b221 100644 --- a/config-serializer/README.md +++ b/config-serializer/README.md @@ -18,8 +18,8 @@ The **binary representation** is meant to be written to, and read from the EEPRO Each configuration item belongs to a specific type. The following types are available: -**Primitive types** are integers and string. +**Primitive types** are integers of different sizes, and string. See [UhkBuffer](UhkBuffer.ts) which implements all the primitive types. -**Compound types** are composed of primitive types, and/or compound types. +**Compound types** are composed of primitive types, and/or compound types. All compound types must descend from the [Serializable](Serializable.ts) class, and saved into the [config-items](config-items) directory. -**Array type** is a special compound type which is composed of a sequency of items of a specific type. +**Array type** is a special compound type which is composed of a sequence of items of a specific type. Array items must descend from the [ClassArray](ClassArray.ts) class.