Skip to content

Commit edfe1b7

Browse files
committed
Minor spelling fixes and tweaks to headers and docs.
1 parent 2e4f604 commit edfe1b7

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ libnop has the following goals:
1515
types, formats, and protocols: perform these tasks naturally within the C++
1616
language.
1717
* Avoid additional runtime support requirements for serialization.
18-
* Provide contemporary features such as bi-directional binary compatability,
18+
* Provide contemporary features such as bidirectional binary compatability,
1919
data validation, type safety, and type fungibility.
2020
* Handle intrinsic types, common STL types and containers, and user-defined
2121
types with a minimum of effort.

docs/getting-started.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ struct TemplateType {
237237
// public methods to enforce policy on how the data may be used.
238238
class Items {
239239
public:
240-
Items = default;
240+
Items() = default;
241241
Items(std::vector<std::string> items) : items_{std::move(items)} {}
242242
Items(const Items&) = default;
243243
Items(Items&&) = default;

include/nop/utility/backtrace.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ namespace nop {
3131
//
3232
// Backtrace utility based on the UNIX backtrace API.
3333
//
34-
// Provides a simple mechanism to generate a backtrace with sumbol lookup.
34+
// Provides a simple mechanism to generate a backtrace with symbol lookup.
3535
//
3636

3737
class Backtrace {

0 commit comments

Comments
 (0)