Commit 67f20f29 authored by Pierre Moulon's avatar Pierre Moulon Committed by Facebook GitHub Bot

Fix typo 'exmaple' -> 'example'

Differential Revision: D25307854

fbshipit-source-id: 11b1282659b1b2c20b04e848f0c9824813af5b21
parent 4c2692fa
...@@ -57,7 +57,7 @@ class Uri { ...@@ -57,7 +57,7 @@ class Uri {
const std::string& host() const { return host_; } const std::string& host() const { return host_; }
/** /**
* Get host part of URI. If host is an IPv6 address, square brackets will not * Get host part of URI. If host is an IPv6 address, square brackets will not
* be returned, for exmaple "::1"; otherwise it returns the same thing as * be returned, for example "::1"; otherwise it returns the same thing as
* host(). * host().
* *
* hostname() is what one needs to call if passing the host to any other tool * hostname() is what one needs to call if passing the host to any other tool
......
...@@ -33,7 +33,7 @@ class SoftRealTimeExecutor : public virtual Executor { ...@@ -33,7 +33,7 @@ class SoftRealTimeExecutor : public virtual Executor {
// for flexbility. While the deadline for a task may be a time point, // for flexbility. While the deadline for a task may be a time point,
// it could also be a duration or the size of the task, which emulates // it could also be a duration or the size of the task, which emulates
// rate-monotonic scheduling that prioritizes small tasks. It also enables // rate-monotonic scheduling that prioritizes small tasks. It also enables
// for exmaple, tiered scheduling (strictly prioritizing a category of tasks) // for example, tiered scheduling (strictly prioritizing a category of tasks)
// by assigning the high-bit of the deadline. // by assigning the high-bit of the deadline.
virtual void add(Func, uint64_t deadline) = 0; virtual void add(Func, uint64_t deadline) = 0;
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment