Skip to content

Commit 71d0abf

Browse files
DeepAnchorjameswpm
authored andcommitted
Fix translations for 13.5.md
1 parent f109dd9 commit 71d0abf

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

en/13.5.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
# 13.5 Add, delete and update blogs
1+
# 13.5 Adding, deleting and updating blogs
22

3-
Introduced in front beego framework to achieve the overall concept and the partial implementation of the pseudo- code, which subsections describe through beego build a blog system, including blog browse, add, modify, or delete operation.
3+
We've already introduced the entire concept behind the Beego framework through examples and pseudo-code. This section will describe how to implement a blogging system using Beego, including the ability to browse, add, modify and delete blog posts.
44

55
## Blog directory
66

7-
Blog directories are as follows:
7+
Our blog's directory structure can be seen below:
88

99
/main.go
1010
/views:
@@ -23,7 +23,7 @@ Blog directories are as follows:
2323

2424
## Blog routing
2525

26-
Blog main routing rules are as follows:
26+
Our blog's main routing rules are as follows:
2727

2828
//Show blog Home
2929
beego.RegisterController("/", &controllers.IndexController{})
@@ -38,7 +38,7 @@ Blog main routing rules are as follows:
3838

3939
## Database structure
4040

41-
The easiest database design blog information
41+
A trivial database table to store basic blog information:
4242

4343
CREATE TABLE entries (
4444
id INT AUTO_INCREMENT,

0 commit comments

Comments
 (0)