Fix copyright lines
[folly.git] / folly / gen / File-inl.h
index 591ead3497f7bf6c7280c079f37d30c1194af0ff..461375a82027d033e3cf5fff5c714a78b381228a 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2017 Facebook, Inc.
+ * Copyright 2014-present Facebook, Inc.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -129,7 +129,7 @@ inline auto byLineImpl(File file, char delim, bool keepDelimiter)
     | resplit(delim, keepDelimiter);
 }
 
-}  // !detail
+} // namespace detail
 
 /**
  * Generator which reads lines from a file.
@@ -161,4 +161,5 @@ inline auto byLine(int fd, char delim = '\n')
 
 inline auto byLine(const char* f, char delim = '\n')
   -> decltype(byLine(File(f), delim)) { return byLine(File(f), delim); }
-}}  // !folly::gen
+} // namespace gen
+} // namespace folly