From 83300e52a0e8e8f00822a79daa157ac6f6d2aab4 Mon Sep 17 00:00:00 2001 From: Andras Slemmer Date: Mon, 6 Feb 2017 14:54:18 +0000 Subject: [PATCH] edger8r: Fix small typo Signed-off-by: Andras Slemmer --- sdk/edger8r/linux/Parser.mly | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/edger8r/linux/Parser.mly b/sdk/edger8r/linux/Parser.mly index cbf56c9368..13974ce2fe 100644 --- a/sdk/edger8r/linux/Parser.mly +++ b/sdk/edger8r/linux/Parser.mly @@ -390,7 +390,7 @@ param_type: attr_block all_type { (* thinking about 'user_defined_type var[4]' *) fun is_ary -> if is_ary then Ast.PTPtr($2, attr) - else failwithf "`%s' is considerred plain type but decorated with pointer attributes" s + else failwithf "`%s' is considered a plain type but decorated with pointer attributes" s | _ -> fun is_ary -> if is_ary then Ast.PTPtr($2, get_ptr_attr $1)