diff options
author | Martin Olsson <martin@minimum.se> | 2013-02-26 17:54:39 +0100 |
---|---|---|
committer | Martin Olsson <martin@minimum.se> | 2013-02-26 17:54:39 +0100 |
commit | 64d0b3f9186bfb41cd14203d11f34c6fe0121945 (patch) | |
tree | 78f214cd7c8aa66270205161057b75e388948255 /cmds | |
parent | 08a92a335fd84ca427b55c6c2d39f72970d82b76 (diff) | |
download | frameworks_base-64d0b3f9186bfb41cd14203d11f34c6fe0121945.zip frameworks_base-64d0b3f9186bfb41cd14203d11f34c6fe0121945.tar.gz frameworks_base-64d0b3f9186bfb41cd14203d11f34c6fe0121945.tar.bz2 |
Fix spelling error s/SORT_OREDER/SORT_ORDER/ in "content --help"
Change-Id: I8f869c9d2243ae8ff414399b7d6835c7ca74d500
Signed-off-by: Martin Olsson <martin@minimum.se>
Diffstat (limited to 'cmds')
-rw-r--r-- | cmds/content/src/com/android/commands/content/Content.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmds/content/src/com/android/commands/content/Content.java b/cmds/content/src/com/android/commands/content/Content.java index 787fbdb..ae39d24 100644 --- a/cmds/content/src/com/android/commands/content/Content.java +++ b/cmds/content/src/com/android/commands/content/Content.java @@ -96,7 +96,7 @@ public class Content { + " [--projection <PROJECTION>] [--where <WHERE>] [--sort <SORT_ORDER>]\n" + " <PROJECTION> is a list of colon separated column names and is formatted:\n" + " <COLUMN_NAME>[:<COLUMN_NAME>...]\n" - + " <SORT_OREDER> is the order in which rows in the result should be sorted.\n" + + " <SORT_ORDER> is the order in which rows in the result should be sorted.\n" + " Example:\n" + " # Select \"name\" and \"value\" columns from secure settings where \"name\" is " + "equal to \"new_setting\" and sort the result by name in ascending order.\n" |