Skip to content

Commit 650efcc

Browse files
(AzureCXP) fixes MicrosoftDocs/azure-docs#105963
Correcting the variable name in Input binding example as per the Java naming convention
1 parent 3c3a42e commit 650efcc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/azure-functions/functions-reference-java.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -320,9 +320,9 @@ public class Function {
320320
private String RowKey;
321321
}
322322
public static class Person {
323-
public String PartitionKey;
324-
public String RowKey;
325-
public String Name;
323+
public String partitionKey;
324+
public String rowKey;
325+
public String name;
326326

327327
public Person(String p, String r, String n) {
328328
this.PartitionKey = p;

0 commit comments

Comments
 (0)