From 9f2fd28e1820cede27923f2ebbcfb267f66de810 Mon Sep 17 00:00:00 2001 From: Tyler Miller Date: Fri, 19 May 2023 13:01:48 -0700 Subject: [PATCH] fix typo --- lua/sos/config.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lua/sos/config.lua b/lua/sos/config.lua index 37ee3e0..9875c81 100644 --- a/lua/sos/config.lua +++ b/lua/sos/config.lua @@ -28,7 +28,7 @@ local defaults = { on_timer = require("sos.impl").on_timer, } ----Get an arbitrarily nest value from a table +---Get an arbitrarily-nested value from a table ---@param tbl table table to get the value from ---@param path unknown[] array of keys to follow ---@return unknown? value @@ -41,7 +41,7 @@ local function tbl_keypath_get(tbl, path) return tbl end ----Set an arbitrarily nest value on a table +---Set an arbitrarily-nested value on a table ---@param tbl table ---@param path unknown[] ---@param val unknown