Skip to content

Commit

Permalink
snake_case variables
Browse files Browse the repository at this point in the history
  • Loading branch information
m-dango committed Nov 18, 2024
1 parent 0dca08c commit a3e8383
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions exercises/practice/two-bucket/.meta/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
"authors": [
"glennj"
],
"contributors": [
"m-dango"
],
"files": {
"solution": [
"lib/TwoBucket.pm"
Expand Down
2 changes: 1 addition & 1 deletion exercises/practice/two-bucket/.meta/template-data.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ properties:
}
stub: |-
sub measure ($bucketOne, $bucketTwo, $goal, $startBucket) {
sub measure ($bucket_1, $bucket_2, $goal, $start_bucket) {
return undef;
}
Expand Down
2 changes: 1 addition & 1 deletion exercises/practice/two-bucket/lib/TwoBucket.pm
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use v5.40;
use Exporter qw<import>;
our @EXPORT_OK = qw<measure>;

sub measure ( $bucketOne, $bucketTwo, $goal, $startBucket ) {
sub measure ( $bucket_1, $bucket_2, $goal, $start_bucket ) {
return undef;
}

Expand Down

0 comments on commit a3e8383

Please sign in to comment.