Skip to content

Instantly share code, notes, and snippets.

@dylanirlbeck
Created September 24, 2022 14:30
Show Gist options
  • Save dylanirlbeck/cd67c6c4bb4c35079e254e1d0bf7fa01 to your computer and use it in GitHub Desktop.
Save dylanirlbeck/cd67c6c4bb4c35079e254e1d0bf7fa01 to your computer and use it in GitHub Desktop.
David Cheng's method refactor
###### Before David's changes. #####
sig {
params(request: OffsetRequest).void
}
def process_flexport_carbon_offsets(request); end
sig {
params(request: OffsetRequest).void
}
def process_third_party_carbon_offsets(request); end
##### After David's changes. #####
sig {
params(request: OffsetRequest).void
}
def process_carbon_offsets(request); end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment