From a94cbc036edcca91407a2c9367f309157fd871d8 Mon Sep 17 00:00:00 2001 From: Anchor Date: Tue, 13 Jan 2015 16:19:59 -0800 Subject: [PATCH] Fix sections "Directory structure" and "Framework design" in 13.1.md --- en/13.1.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/en/13.1.md b/en/13.1.md index ffbd869d..4a20973d 100644 --- a/en/13.1.md +++ b/en/13.1.md @@ -37,7 +37,7 @@ Figure 13.3 framework data flow ## Directory structure -According to the above application process design, blog design the directory structure is as follows: +According to the framework flow we've designed above, our blog project's directory structure should look something like the following: |——main.go import documents |——conf configuration files and processing module @@ -47,9 +47,9 @@ According to the above application process design, blog design the directory str |——static static file directory |——views view gallery -## Frame design +## Framework design -In order to achieve a quick blog to build, based on the above process design intends to develop a minimization framework, which includes routing capabilities, support for REST controllers, automated template rendering, log system, configuration management, and so on. +In order to quickly build our blog, we need to develop a minimal framework based on the application we've designed above. The framework should include routing capabilities, support for RESTful controllers, automated template rendering, a logging system, configuration management, and more. ## Summary