You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@weex.apache.org by ha...@apache.org on 2018/03/20 08:21:16 UTC

[4/9] incubator-weex-site git commit: fix a typo

fix a typo

Project: http://git-wip-us.apache.org/repos/asf/incubator-weex-site/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-weex-site/commit/41590029
Tree: http://git-wip-us.apache.org/repos/asf/incubator-weex-site/tree/41590029
Diff: http://git-wip-us.apache.org/repos/asf/incubator-weex-site/diff/41590029

Branch: refs/heads/master
Commit: 415900296eae69ef18d3e60860c55980064027f0
Parents: abbb450
Author: Liu PeiPei <ls...@live.com>
Authored: Tue Mar 20 14:42:18 2018 +0800
Committer: GitHub <no...@github.com>
Committed: Tue Mar 20 14:42:18 2018 +0800

----------------------------------------------------------------------
 source/guide/advanced/path.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-weex-site/blob/41590029/source/guide/advanced/path.md
----------------------------------------------------------------------
diff --git a/source/guide/advanced/path.md b/source/guide/advanced/path.md
index a66ef99..9822b60 100644
--- a/source/guide/advanced/path.md
+++ b/source/guide/advanced/path.md
@@ -19,7 +19,7 @@ This article will cover uri (url) usage in Weex. Including using image/typeface
 Weex SDK provide `local` scheme to access resources packaged with application, and of cource, it's not working in the HTML5 runtime.
 Currently, developers can use this scheme with `image` and text's font file location.
   * In iOS, it's always locate file in 'bundle resources'. For example, a `image` component with `local:///app_icon` will load image file named 'app_icon' in bundle resouce, and font file work in the same way.
-  * In Android, image component will load from 'drawable' resource folder like 'res/drawable-xxx'. But load font file is different, android framework can not load font file from 'res', so SDK will load it from `asserts` folder.
+  * In Android, image component will load from 'drawable' resource folder like 'res/drawable-xxx'. But load font file is different, android framework can not load font file from 'res', so SDK will load it from `assets` folder.
 
 * HTTP/HTTPS
 It's working in the same way as in web, Weex support these at very beginning.