Skip to content

Commit

Permalink
finagle-core: Correct Tracing.recordClientSendFrargmet() method typo
Browse files Browse the repository at this point in the history
Problem
There is a typo, 'frargmet', in the name of a the `Tracing.recordClientSendFrargmet()` method.

Solution
Corrects the typo

Differential Revision: https://phabricator.twitter.biz/D505617
  • Loading branch information
Joseph Boyd authored and jenkins committed Jun 26, 2020
1 parent d90df75 commit 30726c0
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ Note that ``PHAB_ID=#`` and ``RB_ID=#`` correspond to associated messages in com
Unreleased
----------

Breaking API Changes
~~~~~~~~~~~~~~~~~~~~

* finagle-core: Correct the spelling of `Tracing.recordClientSendFrargmet()` to
`Tracing.recordClientSendFragment()` ``PHAB_ID=D505617``

Bug Fixes
~~~~~~~~~

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ abstract class Tracing {
final def recordServerSendError(error: String): Unit =
record(Annotation.ServerSendError(error))

final def recordClientSendFrargmet(): Unit =
final def recordClientSendFragment(): Unit =
record(Annotation.ClientSendFragment)

final def recordClientRecvFragment(): Unit =
Expand Down

0 comments on commit 30726c0

Please sign in to comment.