From 91dbc77bd4367466c0e19a7a7a691bfc2ad841e7 Mon Sep 17 00:00:00 2001 From: "Rico Sta. Cruz" Date: Fri, 17 Apr 2015 16:55:39 +0800 Subject: [PATCH] Clarify axes --- xpath.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xpath.md b/xpath.md index 6adf959a7..a3f306645 100644 --- a/xpath.md +++ b/xpath.md @@ -283,7 +283,7 @@ This is the default axis. This makes `//a/b/c` work. ``` ### Descendant-or-self axis -When you use `//` for descendants, this is short for the `descendant-or-self::` axis. +`//` is short for the `descendant-or-self::` axis. ```sh # both the same