Lokasi ngalangkungan proxy:   [ UP ]  
[Ngawartoskeun bug]   [Panyetelan cookie]                
Skip to content

Commit 62b3769

Browse files
authored
removed sql tag from output
and capitalized keywords
1 parent 4e12d97 commit 62b3769

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

docs/t-sql/functions/atn2-transact-sql.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,14 +48,14 @@ An [expression](../../t-sql/language-elements/expressions-transact-sql.md) of da
4848
The following example calculates the `ATN2` for the specified `x` and `y` components.
4949

5050
```sql
51-
DECLARE @x float = 35.175643, @y float = 129.44;
52-
SELECT 'The ATN2 of the angle is: ' + CONVERT(varchar, ATN2(@y, @x));
51+
DECLARE @x FLOAT = 35.175643, @y FLOAT = 129.44;
52+
SELECT 'The ATN2 of the angle is: ' + CONVERT(VARCHAR, ATN2(@y, @x));
5353
GO
5454
```
5555

5656
[!INCLUDE[ssResult](../../includes/ssresult-md.md)]
5757

58-
```sql
58+
```
5959
The ATN2 of the angle is: 1.30545
6060
(1 row(s) affected)
6161
```

0 commit comments

Comments
 (0)