Skip to content

Commit

Permalink
update comments
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-gmahadevan committed Aug 27, 2024
1 parent fd73eaa commit acf49b2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/com/snowflake/snowpark_java/Functions.java
Original file line number Diff line number Diff line change
Expand Up @@ -4523,9 +4523,9 @@ public static Column shiftleft(Column c, int numBits) {
*
* <pre>{@code
* DataFrame df = getSession().sql("select * from values(1),(2),(3) as T(a)");
* df.select(Functions.shiftright(Functions.col("a"), 1).as("shiftleft")).show();
* df.select(Functions.shiftright(Functions.col("a"), 1).as("shiftright")).show();
* ---------------
* |"SHIFTLEFT" |
* |"SHIFTRIGHT" |
* ---------------
* |0 |
* |1 |
Expand Down

0 comments on commit acf49b2

Please sign in to comment.