aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--examples/ex1_standalone_app/README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/ex1_standalone_app/README.md b/examples/ex1_standalone_app/README.md
index 5d68e34..1a2d23e 100644
--- a/examples/ex1_standalone_app/README.md
+++ b/examples/ex1_standalone_app/README.md
@@ -23,7 +23,7 @@ a snippet app that controls (instruments) another app under test, please see
package com.my.app;
...
public class ExampleSnippet implements Snippet {
- @Rpc(description='Returns a string containing the given number.')
+ @Rpc(description="Returns a string containing the given number.")
public String getFoo(Integer input) {
return "foo " + input;
}