From 03ecfd43ba9bdfc0450ede3de0375e6497f09c09 Mon Sep 17 00:00:00 2001 From: Kevin Hufnagle Date: Fri, 25 Mar 2016 17:26:18 -0700 Subject: [PATCH] docs: Added missing semicolon within code sample. The code sample for the "Add the Account Required by the Framework" section of the "Creating a Sync Adapter" page now displays a semicolon at the end of every variable and constant declaration. Bug: 27288669 Change-Id: I22bccd4dea3d516231fbcab6059ae4d48d596329 --- docs/html/training/sync-adapters/creating-sync-adapter.jd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/html/training/sync-adapters/creating-sync-adapter.jd b/docs/html/training/sync-adapters/creating-sync-adapter.jd index a790b87fb1767..0819c16771243 100644 --- a/docs/html/training/sync-adapters/creating-sync-adapter.jd +++ b/docs/html/training/sync-adapters/creating-sync-adapter.jd @@ -382,7 +382,7 @@ public class MainActivity extends FragmentActivity { ... // Constants // The authority for the sync adapter's content provider - public static final String AUTHORITY = "com.example.android.datasync.provider" + public static final String AUTHORITY = "com.example.android.datasync.provider"; // An account type, in the form of a domain name public static final String ACCOUNT_TYPE = "example.com"; // The account name