Skip to content

Commit

Permalink
Merge pull request #1092 from bmalinconico/patch-1
Browse files Browse the repository at this point in the history
Minor fix to documentation of Protobuf compiler
  • Loading branch information
rafaelfranca authored Sep 8, 2022
2 parents 13a6ec5 + 5eb3985 commit dca9d22
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/tapioca/dsl/compilers/protobuf.rb
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ module Compilers
# sig { returns(Integer) }
# def customer_id; end
#
# sig { params(month: Integer).returns(Integer) }
# sig { params(value: Integer).returns(Integer) }
# def customer_id=(value); end
#
# sig { returns(Integer) }
Expand Down
2 changes: 1 addition & 1 deletion manual/compiler_protobuf.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class Cart
sig { returns(Integer) }
def customer_id; end

sig { params(month: Integer).returns(Integer) }
sig { params(value: Integer).returns(Integer) }
def customer_id=(value); end

sig { returns(Integer) }
Expand Down

0 comments on commit dca9d22

Please sign in to comment.