Skip to content

Commit

Permalink
Update JavaDoc
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-fgonzalezmendez committed Apr 2, 2024
1 parent 7a67d89 commit fab6460
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/main/java/com/snowflake/snowpark_java/Functions.java
Original file line number Diff line number Diff line change
Expand Up @@ -270,8 +270,8 @@ public static Column kurtosis(Column col) {
* <p>Example:
*
* <pre>{@code
* var df = session.createDataFrame(
* new Row[] { Row.create(1), Row.create(3), Row.create(10), Row.create(1), Row.create(3) },
* DataFrame df = session.createDataFrame(
* new Row[] {Row.create(1), Row.create(3), Row.create(10), Row.create(1), Row.create(3)},
* StructType.create(new StructField("x", DataTypes.IntegerType))
* );
* df.select(max("x")).show();
Expand Down Expand Up @@ -310,8 +310,8 @@ public static Column max(Column col) {
* <p>Example:
*
* <pre>{@code
* var df = session.createDataFrame(
* new Row[] { Row.create(1), Row.create(3), Row.create(10), Row.create(1), Row.create(3) },
* DataFrame df = session.createDataFrame(
* new Row[] {Row.create(1), Row.create(3), Row.create(10), Row.create(1), Row.create(3)},
* StructType.create(new StructField("x", DataTypes.IntegerType))
* );
* df.select(min("x")).show();
Expand Down Expand Up @@ -350,8 +350,8 @@ public static Column min(Column col) {
* <p>Example:
*
* <pre>{@code
* var df = session.createDataFrame(
* new Row[] { Row.create(1), Row.create(3), Row.create(10), Row.create(1), Row.create(3) },
* DataFrame df = session.createDataFrame(
* new Row[] {Row.create(1), Row.create(3), Row.create(10), Row.create(1), Row.create(3)},
* StructType.create(new StructField("x", DataTypes.IntegerType))
* );
* df.select(mean("x")).show();
Expand Down

0 comments on commit fab6460

Please sign in to comment.