Client RequestChannels and folly/python/futures.h
[folly.git] / folly / Try.h
index 1f08e27e3a6fca3160679b13217394fc9f3ef4b1..230c658cac1bd6acc38a75fef78d01006b981a6b 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2016 Facebook, Inc.
+ * Copyright 2017 Facebook, Inc.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -35,7 +35,7 @@ class TryException : public std::logic_error {
 
 class UsingUninitializedTry : public TryException {
  public:
-  UsingUninitializedTry() : TryException("Using unitialized try") {}
+  UsingUninitializedTry() : TryException("Using uninitialized try") {}
 };
 
 /*