diff options
Diffstat (limited to 'src/comp/front/creader.rs')
| -rw-r--r-- | src/comp/front/creader.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/comp/front/creader.rs b/src/comp/front/creader.rs index dd913b53..5ae56417 100644 --- a/src/comp/front/creader.rs +++ b/src/comp/front/creader.rs @@ -312,7 +312,7 @@ fn resolve_path(vec[ast.ident] path, vec[u8] data) -> resolve_result { fn eq_item(vec[u8] data, str s) -> bool { ret Str.eq(Str.unsafe_from_bytes(data), s); } - auto s = Str.connect(path, "."); + auto s = Str.connect(path, "::"); auto md = EBML.new_doc(data); auto paths = EBML.get_doc(md, metadata.tag_paths); auto eqer = bind eq_item(_, s); |