From ae8469bf156033e8d3b9e2a53c389009cf7ade03 Mon Sep 17 00:00:00 2001 From: Ari Zelanko Date: Sat, 19 Dec 2020 01:00:19 -0500 Subject: [PATCH] Remove Space After Decimal Point While reading this doc, I found a datetime2 example with space after the decimal that should not be there. I removed it. --- docs/t-sql/data-types/date-transact-sql.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/t-sql/data-types/date-transact-sql.md b/docs/t-sql/data-types/date-transact-sql.md index e28a6921675..051d9294a1c 100644 --- a/docs/t-sql/data-types/date-transact-sql.md +++ b/docs/t-sql/data-types/date-transact-sql.md @@ -209,7 +209,7 @@ SELECT |**date**|2007-05-08| |**smalldatetime**|2007-05-08 12:35:00| |**datetime**|2007-05-08 12:35:29.123| -|**datetime2**|2007-05-08 12:35:29. 1234567| +|**datetime2**|2007-05-08 12:35:29.1234567| |**datetimeoffset**|2007-05-08 12:35:29.1234567 +12:15| First introduced in SQL Server 2008.