Skip to content

Commit a6bef85

Browse files
authored
fix code block indentation
1 parent 77abb61 commit a6bef85

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/stream-analytics/stream-analytics-javascript-user-defined-functions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,15 +60,15 @@ JavaScript runtime errors are considered fatal, and are surfaced through the Act
6060

6161
You can easily invoke your JavaScript function in your query using the function alias prefixed with **udf**. Here is an example of a JavaScript UDF that converts hexadecimal values to integer being invoked in a Stream Analytics query.
6262

63-
```SQL
63+
```SQL
6464
SELECT
6565
time,
6666
UDF.hex2Int(offset) AS IntOffset
6767
INTO
6868
output
6969
FROM
7070
InputStream
71-
```
71+
```
7272

7373
## Supported JavaScript objects
7474

0 commit comments

Comments
 (0)