diff --git a/docs/sql-programming-guide.md b/docs/sql-programming-guide.md
index d83efa4bab32..3159d52787d5 100644
--- a/docs/sql-programming-guide.md
+++ b/docs/sql-programming-guide.md
@@ -1232,7 +1232,7 @@ import org.apache.spark.sql._
scala.collection.Seq |
ArrayType(elementType, [containsNull])
- Note: The default value of containsNull is false.
+ Note: The default value of containsNull is true.
|
@@ -1358,7 +1358,7 @@ please use factory methods provided in
| java.util.List |
DataType.createArrayType(elementType)
- Note: The value of containsNull will be false
+ Note: The value of containsNull will be true
DataType.createArrayType(elementType, containsNull).
|
@@ -1505,7 +1505,7 @@ from pyspark.sql import *
list, tuple, or array |
ArrayType(elementType, [containsNull])
- Note: The default value of containsNull is False.
+ Note: The default value of containsNull is True.
|