Skip to content

Commit

Permalink
Fixes a couple of typos in the README.
Browse files Browse the repository at this point in the history
  • Loading branch information
jcchavezs authored Mar 21, 2018
1 parent dfe04b3 commit 7846f72
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ Starting an active span will always use the currently active span as a parent.
If no parent is available, then the newly created span is considered to be the
root span of the trace.

Unless you are using asynchronuous code that tracks multiple spans at the same
Unless you are using asynchronous code that tracks multiple spans at the same
time, such as when using cURL Multi Exec or MySQLi Polling you are better
of just using `Tracer::startActiveSpan` everywhere in your application.

Expand Down Expand Up @@ -227,7 +227,7 @@ use OpenTracing\GlobalTracer;

$application->run();

register_shutdown_function(function() use ($tracer) {
register_shutdown_function(function() {
/* Flush the tracer to the backend */
$tracer = GlobalTracer::get();
$tracer->flush();
Expand Down

0 comments on commit 7846f72

Please sign in to comment.