From 13bc8b4ee3a6b95411f6cba74e18f204098e40e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Bauer?= Date: Wed, 28 Sep 2022 21:15:35 +0200 Subject: [PATCH] Fix typo in documentation. --- waflib/TaskGen.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/waflib/TaskGen.py b/waflib/TaskGen.py index 89f63169..32468f03 100644 --- a/waflib/TaskGen.py +++ b/waflib/TaskGen.py @@ -400,7 +400,7 @@ def feature(*k): Decorator that registers a task generator method that will be executed when the object attribute ``feature`` contains the corresponding key(s):: - from waflib.Task import feature + from waflib.TaskGen import feature @feature('myfeature') def myfunction(self): print('that is my feature!')