summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorJuergen Bocklage-Ryannel <juergen.bocklage-ryannel@pelagicore.com>2017-02-03 13:13:46 +0100
committerJuergen Bocklage-Ryannel <juergen.bocklage-ryannel@pelagicore.com>2017-02-03 13:13:46 +0100
commit108488b41beffd2f355cdf3b24e45d63aed093d9 (patch)
tree983b2813723a4ce1f1744a16771a1ab70698853a /README.md
parent6dd57dc8ebf1db3f143350c46890a2a8bff3308c (diff)
downloadqtivi-qface-108488b41beffd2f355cdf3b24e45d63aed093d9.tar.gz
Updated documentation to replace event with signal.
Diffstat (limited to 'README.md')
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index d0041d1..1760a7f 100644
--- a/README.md
+++ b/README.md
@@ -50,7 +50,7 @@ on the other side
interface Echo {
readonly Message lastMessage;
void echo(Message message);
- event void callMe();
+ signal callMe();
};
struct Message {
@@ -76,6 +76,6 @@ for module in system:
ctx = { 'interface': interface }
# use header.h template with ctx to write to a file
generator.write('{{interface|lower}}.h', 'header.h', ctx)
-```
+```
Depending on the used generator it reads the input file and runs it through the generator. The output files are written relative to the given output directory. The input can be either a file or a folder.