Skip to content

Commit

Permalink
fix typo in example codes (#1240)
Browse files Browse the repository at this point in the history
  • Loading branch information
ymotongpoo committed Aug 24, 2022
1 parent f48b313 commit c2f9ebe
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@
SimpleSpanProcessor(ConsoleSpanExporter())
)
instrumentor = GrpcInstrumentorClient().instrument()
grpc_client_instrumentor = GrpcInstrumentorClient()
grpc_client_instrumentor.instrument()
def run():
with grpc.insecure_channel("localhost:50051") as channel:
Expand Down Expand Up @@ -180,7 +181,7 @@ class GrpcInstrumentorClient(BaseInstrumentor):
Usage::
grpc_client_instrumentor = GrpcInstrumentorClient()
grpc.client_instrumentor.instrument()
grpc_client_instrumentor.instrument()
"""

Expand Down

0 comments on commit c2f9ebe

Please sign in to comment.