From b8ec9e6593ab332341b0d293a73c3a55c673175b Mon Sep 17 00:00:00 2001 From: foshes <80663171+foshesss@users.noreply.github.com> Date: Mon, 6 Jan 2025 14:39:50 -0500 Subject: [PATCH] Add link to MemoryStoreHashMap documentation for easier access (#961) ## Changes While working with MemoryStoreHashMap, I noticed there wasn't a direct link to its documentation. To improve accessibility, I added a link directly below the function explanations. This addition aims to make it easier for users to find detailed information, such as parameter descriptions, without having to search separately. ## Checks By submitting your pull request for review, you agree to the following: - [X] This contribution was created in whole or in part by me, and I have the right to submit it under the terms of this repository's open source licenses. - [X] I understand and agree that this contribution and a record of it are public, maintained indefinitely, and may be redistributed under the terms of this repository's open source licenses. - [X] To the best of my knowledge, all proposed changes are accurate. --------- --- content/en-us/cloud-services/memory-stores/hash-map.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/content/en-us/cloud-services/memory-stores/hash-map.md b/content/en-us/cloud-services/memory-stores/hash-map.md index 825f457a2..834c31988 100644 --- a/content/en-us/cloud-services/memory-stores/hash-map.md +++ b/content/en-us/cloud-services/memory-stores/hash-map.md @@ -54,6 +54,8 @@ After you get a hash map, call any of the following functions to read or write d +For in-depth documentation about each function, see `Class.MemoryStoreHashMap`. + All functions accessing data structures in memory stores are asynchronous network calls that might occasionally fail. You should wrap these calls in `Global.LuaGlobals.pcall()` to catch and handle errors, as shown in the code samples.