Skip to content

Commit 9b21df8

Browse files
committed
2 parents bebd204 + 566c594 commit 9b21df8

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

tutorials/hxe-ua-visual-studio-debugging/hxe-ua-visual-studio-debugging.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,13 +54,13 @@ To mark a line as a **Breakpoint**, click the left side of the code line. A red
5454

5555
![Breakpoint Location](breakpoint_location.png)
5656

57-
If you click ![Continue Button](continue_button.png) you will be taken to the most recent **Breakpoint** that you have not stepped over.
57+
If you click the ![Continue Button](continue_button.png) **Continue Button** you will be taken to the most recent **Breakpoint** that you have not stepped over.
5858

5959
[ACCORDION-END]
6060

6161
[ACCORDION-BEGIN [Step 4: ](Stepping Into the Procedure)]
6262

63-
If your line of code contains an procedure, you can ![Step Into](step_into.png) __Step Into__ the procedure. This opens up another window with the procedure selected.
63+
If your line of code contains a procedure, you can ![Step Into](step_into.png) __Step Into__ the procedure. This opens up another window with the procedure selected.
6464

6565
Click the ![Step Into](step_into.png) __Step Into__ button. This opens the `system.calcMathAverage` procedure.
6666

tutorials/hxe-ua-visual-studio-google-cloud/hxe-ua-visual-studio-google-cloud.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ Name your instance, choose the image type, and the instance type. Click **Launch
7979
![Provision Completed](provision_completion.png)
8080

8181
> **Note:**
82-
> You must enable the **Google Cloud Deployment Manager API** for use in your project. To enable the API, go to `https://console.developers.google.com/apis/api/deploymentmanager.googleapis.com/overview?project=<project number>`.
82+
> You must enable the **Google Cloud Deployment Manager API** for use in your project. To enable the API, go to `https://console.developers.google.com/apis/api/deploymentmanager.googleapis.com/overview?project=<project_number>`.
8383
8484
When you are prompted to connect to the instance via an SSH connection, click **Connect**.
8585

tutorials/hxe-ua-visual-studio-tables/hxe-ua-visual-studio-tables.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ Click ![Play Button](execute_button.png) **Execute** to execute the statements.
5959
Create the student score table by executing the following statements:
6060

6161
```bash
62-
CREATE TABLE SYSTEM.DEMO_STUDENT_SCORE_TABLE (name varchar(25), SCORE_MATH int, SCORE_HISTORY INT, PRIMARY KEY(name));
62+
CREATE TABLE SYSTEM.DEMO_STUDENT_SCORE_TABLE (name varchar(25), SCORE_MATH int, SCORE_HISTORY int, PRIMARY KEY(name));
6363
INSERT INTO SYSTEM.DEMO_STUDENT_SCORE_TABLE VALUES('Jerry','90','80');
6464
INSERT INTO SYSTEM.DEMO_STUDENT_SCORE_TABLE VALUES('Albert','91','81');
6565
INSERT INTO SYSTEM.DEMO_STUDENT_SCORE_TABLE VALUES('ShaoWei','92','82');

tutorials/hxe-ua-visual-studio-word-mapping/hxe-ua-visual-studio-word-mapping.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,12 @@ Click **File** > **New** > **Project...**.
2828

2929
![New Project](new_project.png)
3030

31-
In the **New Project**, under **Installed** cascade from **Other Languages** to **Python** and click **HANA Express**.
31+
In the **New Project** window, under **Installed** cascade from **Other Languages** to **Python** and click **HANA Express**.
3232

3333
![New Project Window](new_project_window.png)
3434

3535
> **Note:**
36-
> The Category **Other Languages** may not appear on the list. Go straight to the *Python* category if you see it.
36+
> The Category **Other Languages** may not appear on the list. Go straight to the **Python** category if you see it.
3737
3838
For this project select *HANA Express Tweets Analysis Application*. Choose a name and save location for your project and then click **OK**.
3939

0 commit comments

Comments
 (0)