8000 Fixed some grammatical errors · jinja2cpp/jinja2cpp.github.io@31cc66b · GitHub
[go: up one dir, main page]

Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 31cc66b

Browse files
authored
Fixed some grammatical errors
1 parent 38781df commit 31cc66b

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

docs/getting_started.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
layout: default
33
title: Getting Started
44
nav_order: 2
5-
description: "Quick start of Jinja2C++ usage"
5+
description: "How to quickly start using Jinja2C++"
66
---
77

88
# Getting started
@@ -16,12 +16,12 @@ Or download the latest release: [Release 0.9.2](https://github.com/jinja2cpp/Jin
1616

1717
Or:
1818
- Clone the Jinja2C++ [repository](https://github.com/jinja2cpp/Jinja2Cpp)
19-
- Build it according with the [instructions](build_and_install.html)
20-
- Link to your project.
19+
- Build it according to the [instructions](build_and_install.html)
20+
- Link it with your project.
2121

22-
## The basic example
22+
## A basic example
2323

24-
Usage of Jinja2C++ in the code is pretty simple:
24+
Using Jinja2C++ in your code is pretty simple:
2525
1. Include Jinja2C++ template declaration:
2626
```c++
2727
#include <jinja2/template.h>
@@ -39,7 +39,7 @@ tpl.Load("{{'Hello World' }}!!!");
3939
std::cout << tpl.RenderAsString(jinja2::ValuesMap{}).value() << std::endl;
4040
```
4141

42-
and get:
42+
and you will get:
4343

4444
`
4545
Hello World!!!

0 commit comments

Comments
 (0)
0