From 09290ca277b7cf5490ba6480d106d1abaf9af46d Mon Sep 17 00:00:00 2001 From: Jacob Kagon <69021620+jacobkagon@users.noreply.github.com> Date: Mon, 28 Jun 2021 20:27:45 -0400 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b38c06f5..79ac816e 100644 --- a/README.md +++ b/README.md @@ -160,7 +160,7 @@ my_registry[:greeter] {"Dolly"} # => "Hello Dolly" my_registry.register_feature(my_species) ``` -Namespaced Features respect their anscesters with regard to code access. For instance ```Feature#enabled?``` will check not only the referenced Feature, but traverse all ancestors in its namespace. If any of the referenced Feature's anscestors is disabled, then the referenced Feature is considered disabled -- regardless of whether ```is_enabled``` is set to ```true``` or ```false```. +Namespaced Features respect their ancestors with regard to code access. For instance ```Feature#enabled?``` will check not only the referenced Feature, but traverse all ancestors in its namespace. If any of the referenced Feature's ancestors is disabled, then the referenced Feature is considered disabled -- regardless of whether ```is_enabled``` is set to ```true``` or ```false```. For instance, extending the ```species``` Feature example above: