From 947bb12acd5dec5c53067479952f43c3374d153c Mon Sep 17 00:00:00 2001 From: Felix Yan Date: Mon, 19 Sep 2016 14:36:07 +0800 Subject: [PATCH] Fix a typo: temrinal -> terminal --- .../source/templates/classification/quickstart.html.md.erb | 2 +- .../templates/complementarypurchase/quickstart.html.md.erb | 2 +- .../templates/ecommercerecommendation/quickstart.html.md.erb | 2 +- .../javaecommercerecommendation/quickstart.html.md.erb | 2 +- docs/manual/source/templates/leadscoring/quickstart.html.md.erb | 2 +- .../source/templates/productranking/quickstart.html.md.erb | 2 +- .../source/templates/recommendation/quickstart.html.md.erb | 2 +- .../source/templates/similarproduct/quickstart.html.md.erb | 2 +- docs/manual/source/templates/vanilla/quickstart.html.md.erb | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/docs/manual/source/templates/classification/quickstart.html.md.erb b/docs/manual/source/templates/classification/quickstart.html.md.erb index fe75aca7b7..37ffe8e4d6 100644 --- a/docs/manual/source/templates/classification/quickstart.html.md.erb +++ b/docs/manual/source/templates/classification/quickstart.html.md.erb @@ -380,7 +380,7 @@ you send this JSON `{ "attr0":2, "attr1":0, "attr2":0 }` to the deployed engine return a JSON of the predicted plan. Simply send a query by making a HTTP request or through the `EngineClient` of an SDK. -With the deployed engine running, open another temrinal and run the following `curl` command or use SDK to send the query: +With the deployed engine running, open another terminal and run the following `curl` command or use SDK to send the query:
diff --git a/docs/manual/source/templates/complementarypurchase/quickstart.html.md.erb b/docs/manual/source/templates/complementarypurchase/quickstart.html.md.erb index b9eb964de0..ddac819589 100644 --- a/docs/manual/source/templates/complementarypurchase/quickstart.html.md.erb +++ b/docs/manual/source/templates/complementarypurchase/quickstart.html.md.erb @@ -233,7 +233,7 @@ If you include one or more items in the query, the engine will use each combinat You can simply send a query by making a HTTP request or through the `EngineClient` of an SDK. -With the deployed engine running, open another temrinal and run the following `curl` command or use SDK to send the query: +With the deployed engine running, open another terminal and run the following `curl` command or use SDK to send the query:
diff --git a/docs/manual/source/templates/ecommercerecommendation/quickstart.html.md.erb b/docs/manual/source/templates/ecommercerecommendation/quickstart.html.md.erb index 57f8c46f26..9331cfa5da 100644 --- a/docs/manual/source/templates/ecommercerecommendation/quickstart.html.md.erb +++ b/docs/manual/source/templates/ecommercerecommendation/quickstart.html.md.erb @@ -444,7 +444,7 @@ NOTE: You may see `appId` in engine.json instead, which means you are using old Now, You can retrieve predicted results. To recommend 4 items to user ID "u1". You send this JSON `{ "user": ["u1"], "num": 4 }` to the deployed engine and it will return a JSON of the recommended items. Simply send a query by making a HTTP request or through the `EngineClient` of an SDK. -With the deployed engine running, open another temrinal and run the following `curl` command or use SDK to send the query: +With the deployed engine running, open another terminal and run the following `curl` command or use SDK to send the query:
diff --git a/docs/manual/source/templates/javaecommercerecommendation/quickstart.html.md.erb b/docs/manual/source/templates/javaecommercerecommendation/quickstart.html.md.erb index 9b2de9b1f8..bd96ff8298 100644 --- a/docs/manual/source/templates/javaecommercerecommendation/quickstart.html.md.erb +++ b/docs/manual/source/templates/javaecommercerecommendation/quickstart.html.md.erb @@ -444,7 +444,7 @@ WARNING: Note that the "algorithms" also has `appName` parameter which you need Now, You can retrieve predicted results. To recommend 4 items to user ID "u1". You send this JSON `{ "userEntityId": "u1", "number": 4 }` to the deployed engine and it will return a JSON of the recommended items. Simply send a query by making a HTTP request or through the `EngineClient` of an SDK. -With the deployed engine running, open another temrinal and run the following `curl` command or use SDK to send the query: +With the deployed engine running, open another terminal and run the following `curl` command or use SDK to send the query:
diff --git a/docs/manual/source/templates/leadscoring/quickstart.html.md.erb b/docs/manual/source/templates/leadscoring/quickstart.html.md.erb index 8a66bbbefb..989797d599 100644 --- a/docs/manual/source/templates/leadscoring/quickstart.html.md.erb +++ b/docs/manual/source/templates/leadscoring/quickstart.html.md.erb @@ -305,7 +305,7 @@ Now, You can retrieve the results. When a user lands on your page "example.com/p Simply send a query by making a HTTP request or through the `EngineClient` of an SDK. -With the deployed engine running, open another temrinal and run the following `curl` command or use SDK to send the query: +With the deployed engine running, open another terminal and run the following `curl` command or use SDK to send the query:
diff --git a/docs/manual/source/templates/productranking/quickstart.html.md.erb b/docs/manual/source/templates/productranking/quickstart.html.md.erb index 1761780fbc..35c7cc5006 100644 --- a/docs/manual/source/templates/productranking/quickstart.html.md.erb +++ b/docs/manual/source/templates/productranking/quickstart.html.md.erb @@ -314,7 +314,7 @@ User u10 views item i7 Now, You can retrieve predicted results. To rank items with IDs "i1", "i3", "i10", "i2", "i5", "i31", "i9" for user "u2". You send this JSON `{ "user": "u2", "items": ["i1", "i3", "i10", "i2", "i5", "i31", "i9"] }` to the deployed engine and it will return a JSON of the ranked items. Simply send a query by making a HTTP request or through the `EngineClient` of an SDK. -With the deployed engine running, open another temrinal and run the following `curl` command or use SDK to send the query: +With the deployed engine running, open another terminal and run the following `curl` command or use SDK to send the query:
diff --git a/docs/manual/source/templates/recommendation/quickstart.html.md.erb b/docs/manual/source/templates/recommendation/quickstart.html.md.erb index f84e9d1991..04ddf0cf40 100644 --- a/docs/manual/source/templates/recommendation/quickstart.html.md.erb +++ b/docs/manual/source/templates/recommendation/quickstart.html.md.erb @@ -275,7 +275,7 @@ whose id is 1, you send this JSON `{ "user": "1", "num": 4 }` to the deployed engine and it will return a JSON of the recommended movies. Simply send a query by making a HTTP request or through the `EngineClient` of an SDK. -With the deployed engine running, open another temrinal and run the following `curl` command or use SDK to send the query: +With the deployed engine running, open another terminal and run the following `curl` command or use SDK to send the query:
diff --git a/docs/manual/source/templates/similarproduct/quickstart.html.md.erb b/docs/manual/source/templates/similarproduct/quickstart.html.md.erb index 82af17f799..832cb3502d 100644 --- a/docs/manual/source/templates/similarproduct/quickstart.html.md.erb +++ b/docs/manual/source/templates/similarproduct/quickstart.html.md.erb @@ -350,7 +350,7 @@ User u10 views item i29 Now, You can retrieve predicted results. To retrieve 4 items which are similar to item ID "i1". You send this JSON `{ "items": ["i1"], "num": 4 }` to the deployed engine and it will return a JSON of the recommended items. Simply send a query by making a HTTP request or through the `EngineClient` of an SDK. -With the deployed engine running, open another temrinal and run the following `curl` command or use SDK to send the query: +With the deployed engine running, open another terminal and run the following `curl` command or use SDK to send the query:
diff --git a/docs/manual/source/templates/vanilla/quickstart.html.md.erb b/docs/manual/source/templates/vanilla/quickstart.html.md.erb index 6e2403890e..6b0808728b 100644 --- a/docs/manual/source/templates/vanilla/quickstart.html.md.erb +++ b/docs/manual/source/templates/vanilla/quickstart.html.md.erb @@ -53,7 +53,7 @@ As long as the appId is valid, this Vanilla Engine template does not require eve Now, You can try to retrieve predicted results. The engine accepts JSON query with the field 'q': `{ "q" : "foo" }`. A prefix is added to the query data and return as PredictedResult. -With the deployed engine running, open another temrinal and run the following `curl` command or use SDK to send the query: +With the deployed engine running, open another terminal and run the following `curl` command or use SDK to send the query: