Skip to content

Commit

Permalink
Merge pull request #130 from JetBrains/small_docs_fix
Browse files Browse the repository at this point in the history
small docs fixes
  • Loading branch information
Jolanrensen authored Feb 18, 2022
2 parents 25b36c9 + 3800311 commit e2c3932
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 11 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/generate_docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,6 @@ on:
push:
branches:
- "spark-3.2"
pull_request:
branches:
- "spark-3.2"


jobs:
generate-and-publish-docs:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -601,7 +601,7 @@ operator fun Column.unaryMinus(): Column = `unary_$minus`()
*
* // Kotlin:
* import org.jetbrains.kotlinx.spark.api.*
* df.select( !df("amount") )
* df.filter( !df("amount") )
*
* // Java:
* import static org.apache.spark.sql.functions.*;
Expand Down Expand Up @@ -665,7 +665,7 @@ infix fun Column.`===`(other: Any): Column = `$eq$eq$eq`(other)
*
* // Java:
* import static org.apache.spark.sql.functions.*;
* df.filter( col("colA").notEqual(col("colB")) );
* df.select( col("colA").notEqual(col("colB")) );
* ```
*/
infix fun Column.neq(other: Any): Column = `$eq$bang$eq`(other)
Expand All @@ -687,7 +687,7 @@ infix fun Column.neq(other: Any): Column = `$eq$bang$eq`(other)
*
* // Java:
* import static org.apache.spark.sql.functions.*;
* df.filter( col("colA").notEqual(col("colB")) );
* df.select( col("colA").notEqual(col("colB")) );
* ```
*/
infix fun Column.`=!=`(other: Any): Column = `$eq$bang$eq`(other)
Expand Down Expand Up @@ -802,9 +802,9 @@ infix fun Column.or(other: Any): Column = `$bar$bar`(other)
*
* // Kotlin:
* import org.jetbrains.kotlinx.spark.api.*
* people.filter( people("inSchool") and people("isEmployed") )
* people.select( people("inSchool") and people("isEmployed") )
* // or
* people.filter( people("inSchool") `&&` people("isEmployed") )
* people.select( people("inSchool") `&&` people("isEmployed") )
*
* // Java:
* import static org.apache.spark.sql.functions.*;
Expand All @@ -821,9 +821,9 @@ infix fun Column.and(other: Any): Column = `$amp$amp`(other)
*
* // Kotlin:
* import org.jetbrains.kotlinx.spark.api.*
* people.filter( people("inSchool") and people("isEmployed") )
* people.select( people("inSchool") and people("isEmployed") )
* // or
* people.filter( people("inSchool") `&&` people("isEmployed") )
* people.select( people("inSchool") `&&` people("isEmployed") )
*
* // Java:
* import static org.apache.spark.sql.functions.*;
Expand Down

0 comments on commit e2c3932

Please sign in to comment.