From 2c70a8eadb1fa75037ec60b65d413346a541be05 Mon Sep 17 00:00:00 2001 From: Phil Taylor Date: Wed, 15 Nov 2017 17:33:43 +0000 Subject: [PATCH] set correct path to security.md --- doc/currentuser/publickeys.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/currentuser/publickeys.md b/doc/currentuser/publickeys.md index 5cfcf82b77e..f0eb72ad421 100644 --- a/doc/currentuser/publickeys.md +++ b/doc/currentuser/publickeys.md @@ -19,7 +19,7 @@ $key = $client->user()->keys()->show(1234); ### Add a public key to the authenticated user. -> Requires [authentication](security.md). +> Requires [authentication](../security.md). ```php $key = $client->user()->keys()->create(array('title' => 'key title', 'key' => 12345)); @@ -29,7 +29,7 @@ Adds a key with title 'key title' to the authenticated user and returns a the cr ### Remove a public key from the authenticated user. -> Requires [authentication](security.md). +> Requires [authentication](../security.md). ```php $client->user()->keys()->remove(12345);