aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian <sebastian@topobyte.de>2023-04-29 03:00:47 +0200
committerGitHub <noreply@github.com>2023-04-28 18:00:47 -0700
commit42c24baf4a3efc9d9d5d91430c5907df8490f04f (patch)
treec05768db1ca51402644af96b6e9a7934083446b4
parent1d3fa077dd023d0174ce282bdbf9d2c9bd9f4b83 (diff)
downloadmobly-snippet-lib-42c24baf4a3efc9d9d5d91430c5907df8490f04f.tar.gz
Update README.md (#117)
Use double instead of single quotes for Rpc description (doesn't compile with single quotes)
-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;
}