Skip to content

Commit 013ba53

Browse files
(AzureCXP) fixes MicrosoftDocs/azure-docs#105963
Correcting the variable Naming convention in Input Bindings as discussed with author
1 parent 650efcc commit 013ba53

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -316,18 +316,18 @@ public class Function {
316316
}
317317

318318
public static class TestInputData {
319-
public String getKey() { return this.RowKey; }
320-
private String RowKey;
319+
public String getKey() { return this.rowKey; }
320+
private String rowKey;
321321
}
322322
public static class Person {
323323
public String partitionKey;
324324
public String rowKey;
325325
public String name;
326326

327327
public Person(String p, String r, String n) {
328-
this.PartitionKey = p;
329-
this.RowKey = r;
330-
this.Name = n;
328+
this.partitionKey = p;
329+
this.rowKey = r;
330+
this.name = n;
331331
}
332332
}
333333
}

0 commit comments

Comments
 (0)