Skip to content

Commit b4a1a75

Browse files
Merge pull request #229666 from Venkateshdodda-MSFT/patch-35
(AzureCXP) fixes MicrosoftDocs/azure-docs#105963
2 parents fd51603 + 013ba53 commit b4a1a75

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

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

Lines changed: 8 additions & 8 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 {
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) {
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)