From d3b920769d0642a6d59ca1a4dcff0709a757b6b8 Mon Sep 17 00:00:00 2001 From: fjy Date: Fri, 25 Jul 2014 09:26:44 -0700 Subject: [PATCH] a few more cleanups to docs --- docs/content/Tutorial:-A-First-Look-at-Druid.md | 2 +- docs/content/Tutorial:-Webstream.md | 2 +- docs/content/Twitter-Tutorial.md | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/content/Tutorial:-A-First-Look-at-Druid.md b/docs/content/Tutorial:-A-First-Look-at-Druid.md index 3853474e83..923f3f45e1 100644 --- a/docs/content/Tutorial:-A-First-Look-at-Druid.md +++ b/docs/content/Tutorial:-A-First-Look-at-Druid.md @@ -289,7 +289,7 @@ and put the following in there: "dataSource": "wikipedia", "granularity": "all", "dimensions": [ "page" ], - "orderBy": { + "limitSpec": { "type": "default", "columns": [ { "dimension": "edit_count", "direction": "DESCENDING" } ], "limit": 10 diff --git a/docs/content/Tutorial:-Webstream.md b/docs/content/Tutorial:-Webstream.md index 940665ed75..db87404ab8 100644 --- a/docs/content/Tutorial:-Webstream.md +++ b/docs/content/Tutorial:-Webstream.md @@ -251,7 +251,7 @@ and put the following in there: "dataSource": "webstream", "granularity": "all", "dimensions": [ "geo_region" ], - "orderBy": { + "limitSpec": { "type": "default", "columns": [ { "dimension": "known_users", "direction": "DESCENDING" } diff --git a/docs/content/Twitter-Tutorial.md b/docs/content/Twitter-Tutorial.md index 0221b7b0c1..3ed5b83949 100644 --- a/docs/content/Twitter-Tutorial.md +++ b/docs/content/Twitter-Tutorial.md @@ -306,7 +306,7 @@ and put the following in there: "dataSource": "twitterstream", "granularity": "all", "dimensions": ["htags"], - "orderBy": {"type":"default", "columns":[{"dimension": "tweets", "direction":"DESCENDING"}], "limit":5}, + "limitSpec": {"type":"default", "columns":[{"dimension": "tweets", "direction":"DESCENDING"}], "limit":5}, "aggregations":[ { "type": "longSum", "fieldName": "tweets", "name": "tweets"} ], @@ -315,7 +315,7 @@ and put the following in there: } ``` -Woah! Our query just got a way more complicated. Now we have these "Filters":Filters.html things and this "LimitSpec":LimitSpec.html thing. Fear not, it turns out the new objects we've introduced to our query can help define the format of our results and provide an answer to our question. +Woah! Our query just got a way more complicated. Now we have these [Filters](Filters.html) things and this [LimitSpec](LimitSpec.html) thing. Fear not, it turns out the new objects we've introduced to our query can help define the format of our results and provide an answer to our question. If you issue the query: -- GitLab