From 96b392cade1aaa92cc17ea1e0528f8b95a7ddb7f Mon Sep 17 00:00:00 2001
From: Tahmid Akbar Omim <114372455+imperialc0der@users.noreply.github.com>
Date: Thu, 3 Oct 2024 02:44:18 +0600
Subject: [PATCH] Update standards.md (#198)
---
docs/develop/standards.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/develop/standards.md b/docs/develop/standards.md
index 60de4ab..443e1eb 100644
--- a/docs/develop/standards.md
+++ b/docs/develop/standards.md
@@ -67,7 +67,7 @@ You may choose to define additional standard columns that are specific to your p
## Data Types
Use the appropriate data type so that you can search and filter intelligently. Most of this is fairly self-explanatory but there are a couple items worth pointing out:
-- Steampipe does not not support native Postgres arrays - use `ColumnType_JSON` for arrays
+- Steampipe does not support native Postgres arrays - use `ColumnType_JSON` for arrays
- There are 2 valid IP address formats, `ColumnType_IPADDR` and `ColumnType_CIDR` which correspond to Postgres inet and cidr data types:
- Use `ColumnType_IPADDR` for single ip address - `10.11.12.13`.
- Use `ColumnType_IPADDR` when a file can either be a single single ip address OR a cidr range - `192.168.0.0/24`, `10.11.12.13`.