From aacec7d77c0765a5ce1cc09f71af2a174e318ff7 Mon Sep 17 00:00:00 2001 From: "Rico Sta. Cruz" Date: Fri, 17 Apr 2015 16:55:16 +0800 Subject: [PATCH] Clarify axes --- xpath.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xpath.md b/xpath.md index 5cd9b2bac..6adf959a7 100644 --- a/xpath.md +++ b/xpath.md @@ -261,7 +261,7 @@ Steps of an expression are separated by `/`, usually used to pick child nodes. T {:.light} ### Child axis -When axis is not specified, a `name` is short for `child::name`. This makes `//a/b/c` work. +This is the default axis. This makes `//a/b/c` work. ```sh # both the same