Skip to content

Commit

Permalink
Merge pull request #62 from ballerina-platform/dev
Browse files Browse the repository at this point in the history
Fix daily build failure and update module owners
  • Loading branch information
NipunaRanasinghe authored Oct 6, 2023
2 parents 99fe0e8 + d590f27 commit 1094271
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
# See: https://help.github.com/articles/about-codeowners/

# These owners will be the default owners for everything in the repo.
* @indikasampath2000 @abeykoon @Chuhaa
* @NipunaRanasinghe @kalaiyarasiganeshalingam
4 changes: 2 additions & 2 deletions examples/update_chart.bal
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ public function main() {
left: 99
};

excel:Worksheet|error response = excelClient->updateChart(workbookIdOrPath, "worksheetName", "chartName",
excel:Chart|error response = excelClient->updateChart(workbookIdOrPath, "worksheetName", "chartName",
updateChart);
if (response is excel:Worksheet) {
if (response is excel:Chart) {
log:printInfo(response.toString());
}
}

0 comments on commit 1094271

Please sign in to comment.