Fix a few typos all over the code
authorFaidon Liambotis <paravoid@debian.org>
Tue, 10 May 2016 18:05:26 +0000 (11:05 -0700)
committerFacebook Github Bot 5 <facebook-github-bot-5-bot@fb.com>
Tue, 10 May 2016 18:20:29 +0000 (11:20 -0700)
Summary:
These are pretty trivial. Debian's lint tool (lintian) warns about those
in its verbose mode, and since we saw them when packaging for Debian, we
thought of fixing them and forwarding them upstream.
Closes https://github.com/facebook/folly/pull/345

Reviewed By: Orvid

Differential Revision: D2769801

Pulled By: elliottneilclark

fbshipit-source-id: ad37cc53792f21aae6558ba256f20cb56c6caab5

folly/Benchmark.h
folly/experimental/Bits.h
folly/experimental/fibers/AddTasks.h
folly/experimental/fibers/Baton.h
folly/io/async/test/UndelayedDestruction.h

index fe4fc239fefb61ac0e0e8aad64f4626a5c1f28cb..0129979856132a98e21d62e70ffe21b102d3c3ee 100644 (file)
@@ -375,7 +375,7 @@ void doNotOptimizeAway(T&& datum) {
   BENCHMARK_NAMED_PARAM(name, param, param)
 
 /**
- * Same as BENCHMARK_PARAM, but allows to return the actual number of
+ * Same as BENCHMARK_PARAM, but allows one to return the actual number of
  * iterations that have been run.
  */
 #define BENCHMARK_PARAM_MULTI(name, param)                              \
@@ -415,7 +415,7 @@ void doNotOptimizeAway(T&& datum) {
   }
 
 /**
- * Same as BENCHMARK_NAMED_PARAM, but allows to return the actual number
+ * Same as BENCHMARK_NAMED_PARAM, but allows one to return the actual number
  * of iterations that have been run.
  */
 #define BENCHMARK_NAMED_PARAM_MULTI(name, param_name, ...)              \
@@ -460,7 +460,7 @@ void doNotOptimizeAway(T&& datum) {
     __VA_ARGS__)
 
 /**
- * Same as BENCHMARK_RELATIVE, but allows to return the actual number
+ * Same as BENCHMARK_RELATIVE, but allows one to return the actual number
  * of iterations that have been run.
  */
 #define BENCHMARK_RELATIVE_MULTI(name, ...)                     \
@@ -477,7 +477,7 @@ void doNotOptimizeAway(T&& datum) {
   BENCHMARK_RELATIVE_NAMED_PARAM(name, param, param)
 
 /**
- * Same as BENCHMARK_RELATIVE_PARAM, but allows to return the actual
+ * Same as BENCHMARK_RELATIVE_PARAM, but allows one to return the actual
  * number of iterations that have been run.
  */
 #define BENCHMARK_RELATIVE_PARAM_MULTI(name, param)                     \
@@ -497,7 +497,7 @@ void doNotOptimizeAway(T&& datum) {
   }
 
 /**
- * Same as BENCHMARK_RELATIVE_NAMED_PARAM, but allows to return the
+ * Same as BENCHMARK_RELATIVE_NAMED_PARAM, but allows one to return the
  * actual number of iterations that have been run.
  */
 #define BENCHMARK_RELATIVE_NAMED_PARAM_MULTI(name, param_name, ...)     \
index 50836ed8fd3e650a0ae15cdfc43c047ca82f3f71..61844e8eeb347bff7ddea4c597336bc5126512bb 100644 (file)
@@ -65,7 +65,7 @@ struct BitsTraits<Unaligned<T>, typename std::enable_if<
   }
 };
 
-// Special version that allows to disable address sanitizer on demand.
+// Special version that allows one to disable address sanitizer on demand.
 template <class T>
 struct BitsTraits<UnalignedNoASan<T>, typename std::enable_if<
     (std::is_integral<T>::value)>::type> {
index be4c25b1ec4a48e8d2d8870ed9aa45aa9f659ac2..1062b9b8b18f96a6c7654e9c106ae9a87688ff3e 100644 (file)
@@ -31,8 +31,8 @@ class TaskIterator;
 
 /**
  * Schedules several tasks and immediately returns an iterator, that
- * allow to traverse tasks in the order of their completion. All results and
- * exptions thrown are stored alongside with the task id and are
+ * allow one to traverse tasks in the order of their completion. All results
+ * and exceptions thrown are stored alongside with the task id and are
  * accessible via iterator.
  *
  * @param first Range of tasks to be scheduled
index 5a9a6e0117c650bd7f34a720a61a90496b8484ed..c2ee7044fc9a59837de0111475678c217002ee4a 100644 (file)
@@ -29,8 +29,8 @@ class FiberManager;
 /**
  * @class Baton
  *
- * Primitive which allows to put current Fiber to sleep and wake it from another
- * Fiber/thread.
+ * Primitive which allows one to put current Fiber to sleep and wake it from
+ * another Fiber/thread.
  */
 class Baton {
  public:
index 47a3dba8eb05b77ef4addeb91444ec0aa5425b66..ba1fe91e4b232c558164523c30495cac01a90bae 100644 (file)
@@ -66,7 +66,7 @@ class UndelayedDestruction : public TDD {
    * The caller is responsible for ensuring that the object is only destroyed
    * where it is safe to do so.  (i.e., when the destructor guard count is 0).
    *
-   * The exact conditions for meeting this may be dependant upon your class
+   * The exact conditions for meeting this may be dependent upon your class
    * semantics.  Typically you are only guaranteed that it is safe to destroy
    * the object directly from the event loop (e.g., directly from a
    * EventBase::LoopCallback), or when the event loop is stopped.