From 689625acfe7d4267c5e2eaa1f1249421d1ac25f3 Mon Sep 17 00:00:00 2001 From: Luis Lavena Date: Thu, 10 Mar 2016 17:49:41 -0300 Subject: [PATCH] Correct typos in documentation --- src/radix/tree.cr | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/radix/tree.cr b/src/radix/tree.cr index b335a6f..6a16a3c 100644 --- a/src/radix/tree.cr +++ b/src/radix/tree.cr @@ -53,7 +53,7 @@ module Radix # tree.add "/abcxyz", :xyz # ``` # - # Nodes inside the tree will be adjusted to accomodate the different + # Nodes inside the tree will be adjusted to accommodate the different # segments of the given *path*. # # ``` @@ -73,7 +73,7 @@ module Radix # tree.add "/products/featured", :featured # ``` # - # Catch all (globbing) and named paramters *path* will be located with + # Catch all (globbing) and named parameters *path* will be located with # lower priority against other nodes. # # ```