From f4b073cadcae6d999a59f9b68722c0f3fcdedcc2 Mon Sep 17 00:00:00 2001 From: Pritesh Shah Date: Sun, 15 Mar 2015 12:58:32 -0700 Subject: [PATCH] Fixed typo in sample code. resultStr should have been resultDisplayStr --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1d90fcb..d67eabe 100644 --- a/README.md +++ b/README.md @@ -144,7 +144,7 @@ protected void onActivityResult(int requestCode, int resultCode, Intent data) { resultDisplayStr = "Scan was canceled."; } // do something with resultDisplayStr, maybe display it in a textView - // resultTextView.setText(resultStr); + // resultTextView.setText(resultDisplayStr); } // else handle other activity results }