Skip to content
Snippets Groups Projects
Commit 7dbf1fdb authored by Jacky Li's avatar Jacky Li Committed by Reynold Xin
Browse files

[SQL] fix typo in class description

Author: Jacky Li <jacky.likun@gmail.com>

Closes #4100 from jackylk/patch-9 and squashes the following commits:

b13b9d6 [Jacky Li] Update SQLConf.scala
4d3f83d [Jacky Li] Update SQLConf.scala
fcc8c85 [Jacky Li] [SQL] fix typo in class description
parent 19556454
No related branches found
No related tags found
No related merge requests found
......@@ -53,11 +53,11 @@ private[spark] object SQLConf {
}
/**
* A trait that enables the setting and getting of mutable config parameters/hints.
* A class that enables the setting and getting of mutable config parameters/hints.
*
* In the presence of a SQLContext, these can be set and queried by passing SET commands
* into Spark SQL's query functions (i.e. sql()). Otherwise, users of this trait can
* modify the hints by programmatically calling the setters and getters of this trait.
* into Spark SQL's query functions (i.e. sql()). Otherwise, users of this class can
* modify the hints by programmatically calling the setters and getters of this class.
*
* SQLConf is thread-safe (internally synchronized, so safe to be used in multiple threads).
*/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment