From 24f2e2595e02107a81e982907c3c5399e347f3a1 Mon Sep 17 00:00:00 2001 From: Fengda HUANG Date: Sat, 18 Jun 2016 19:39:01 +0800 Subject: [PATCH] Rewords & fixed #11 --- chapters/07-find-github-project.md | 2 +- github-roam.md | 2 +- index.html | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/chapters/07-find-github-project.md b/chapters/07-find-github-project.md index fc52ffd..088cf19 100644 --- a/chapters/07-find-github-project.md +++ b/chapters/07-find-github-project.md @@ -134,7 +134,7 @@ var promise = { ###实现第二个需求 -由于,现有的一些Ajax库都比较,最后只好参照着别人的代码自己实现。 +由于已经有了现有的很多库,所以就可以直接参照(抄)别人写的代码。 ```javascript Lettuce.get = function (url, callback) { diff --git a/github-roam.md b/github-roam.md index c69c190..99f0264 100644 --- a/github-roam.md +++ b/github-roam.md @@ -1706,7 +1706,7 @@ var promise = { ###实现第二个需求 -由于,现有的一些Ajax库都比较,最后只好参照着别人的代码自己实现。 +由于已经有了现有的很多库,所以就可以直接参照(抄)别人写的代码。 ```javascript Lettuce.get = function (url, callback) { diff --git a/index.html b/index.html index 22aad56..d2e4494 100644 --- a/index.html +++ b/index.html @@ -1646,7 +1646,7 @@ public class replaceTemp { };

需要注意的是: License,不同的软件有不同的License,如MIT、GPL等等。最好能在遵循协议的情况下,使用别人的代码。

实现第二个需求

-

由于,现有的一些Ajax库都比较,最后只好参照着别人的代码自己实现。

+

由于已经有了现有的很多库,所以就可以直接参照(抄)别人写的代码。

Lettuce.get = function (url, callback) {
     Lettuce.send(url, 'GET', callback);
 };