diff options
author | Kane York <kanepyork@gmail.com> | 2020-07-17T04·05-0700 |
---|---|---|
committer | Kane York <rikingcoding@gmail.com> | 2020-07-17T20·01+0000 |
commit | 6c98d3d81ffd425882c8ccf74aa5a55494d6c461 (patch) | |
tree | 798ceeec20e1d80d5c42f4c679b43cc72f321aa3 /nix/buildGo/example | |
parent | af47a89d6f40f3a90d57d4c6e7b4a88258ba6f0b (diff) |
fix(nix/buildGo/example): use correct package name r/1351
Change-Id: Ie191e4154afe5aa47bb9ea5322010db014a1fa42 Reviewed-on: https://cl.tvl.fyi/c/depot/+/1246 Tested-by: BuildkiteCI Reviewed-by: tazjin <mail@tazj.in>
Diffstat (limited to 'nix/buildGo/example')
-rw-r--r-- | nix/buildGo/example/thing.proto | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nix/buildGo/example/thing.proto b/nix/buildGo/example/thing.proto index 0cb34124dfb9..0f6d6575e008 100644 --- a/nix/buildGo/example/thing.proto +++ b/nix/buildGo/example/thing.proto @@ -2,7 +2,7 @@ // SPDX-License-Identifier: Apache-2.0 syntax = "proto3"; -package exampleProto; +package example; message Thing { string id = 1; |