You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,14 +16,14 @@ fkYAML is a C++ header-only library to deserialize, serialize and build YAML doc
16
16
It is also carefully desinged and tested to work with various compilers, C++ standards and platforms.
17
17
So, if you want portability & development speed-up, fkYAML is the way to go.
18
18
You can add YAML support into your projects by just including the header file(s).
19
-
This simple example deserializes a YAML string into a document, make simple modifications, and finally serializes the modified documentation to a YAML string.
19
+
This simple example (1) deserializes a YAML string into a document, (2) modifies the documentation, and finally (3) serializes the modified documentation to a YAML string.
20
20
```cpp
21
21
#include<iostream>
22
22
#include<string>
23
23
#include<fkYAML/node.hpp>
24
24
25
25
intmain() {
26
-
// 1. deserialize a YAML string into a document.
26
+
// 1. Deserialize a YAML string into a document.
27
27
// The input can be other container types or their iterators.
28
28
// `deserialize` accepts `FILE*`, `std::istream` as well.
Copy file name to clipboardExpand all lines: docs/docs/index.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,14 +16,14 @@ fkYAML is a C++ header-only library to deserialize, serialize and build YAML doc
16
16
It is also carefully desinged and tested to work with various compilers, C++ standards and platforms.
17
17
So, if you want portability & development speed-up, fkYAML is the way to go.
18
18
You can add YAML support into your projects by just including the header file(s).
19
-
This simple example deserializes a YAML string into a document, make simple modifications, and finally serializes the modified documentation to a YAML string.
19
+
This simple example (1) deserializes a YAML string into a document, (2) modifies the documentation, and finally (3) serializes the modified documentation to a YAML string.
20
20
```cpp
21
21
#include<iostream>
22
22
#include<string>
23
23
#include<fkYAML/node.hpp>
24
24
25
25
intmain() {
26
-
// 1. deserialize a YAML string into a document.
26
+
// 1. Deserialize a YAML string into a document.
27
27
// The input can be other container types or their iterators.
28
28
// `deserialize` accepts `FILE*`, `std::istream` as well.
0 commit comments