docs: change license boilerplate opener to /*
refs #4163
Change-Id: I8043bbb0d0675469b980522a027a3dbbe9294106
diff --git a/README-dev.md b/README-dev.md
index f1975b3..dc3e937 100644
--- a/README-dev.md
+++ b/README-dev.md
@@ -2,11 +2,11 @@
## Licensing Requirements
-Contributions to ndn-tools MUST be licensed under GPL 3.0 or a compatible license.
+Contributions to ndn-tools MUST be licensed under GPL 3.0 or a compatible license.
If you choose GPL 3.0, include the following license boilerplate into all C++ code files:
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
- /**
+ /*
* Copyright (c) [Year(s)], [Copyright Holder(s)].
*
* This file is part of ndn-tools (Named Data Networking Essential Tools).
@@ -81,17 +81,17 @@
namespace ndn {
namespace foo {
-
+
class Bar
{
public:
explicit
Bar(Face& face);
-
+
void
run();
};
-
+
int
main(int argc, char** argv)
{
@@ -100,10 +100,10 @@
program.run();
return 0;
}
-
+
} // namespace foo
} // namespace ndn
-
+
int
main(int argc, char** argv)
{