aboutsummaryrefslogtreecommitdiff
path: root/src/analyze.cpp
diff options
context:
space:
mode:
authorAndrew Kelley <superjoe30@gmail.com>2016-08-16 22:42:50 -0700
committerAndrew Kelley <superjoe30@gmail.com>2016-08-16 22:42:50 -0700
commit37d167f6e0e26e8dc57950cb0fa1bfa630036521 (patch)
tree8b947d065ef12b189cb7a4c880c0009e7a6cd2b8 /src/analyze.cpp
parent0ae9023832584e256aa3b6df0f0829026141d21a (diff)
downloadzig-37d167f6e0e26e8dc57950cb0fa1bfa630036521.tar.gz
zig-37d167f6e0e26e8dc57950cb0fa1bfa630036521.zip
std: conform to style guidelines
Diffstat (limited to 'src/analyze.cpp')
-rw-r--r--src/analyze.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/analyze.cpp b/src/analyze.cpp
index 2a10ebcef1..4e4655c99c 100644
--- a/src/analyze.cpp
+++ b/src/analyze.cpp
@@ -5206,7 +5206,7 @@ static TypeTableEntry *analyze_builtin_fn_call_expr(CodeGen *g, ImportTableEntry
case TypeTableEntryIdNamespace:
case TypeTableEntryIdGenericFn:
add_node_error(g, expr_node,
- buf_sprintf("type '%s' not eligible for @typeof", buf_ptr(&type_entry->name)));
+ buf_sprintf("type '%s' not eligible for @typeOf", buf_ptr(&type_entry->name)));
return g->builtin_types.entry_invalid;
case TypeTableEntryIdMetaType:
case TypeTableEntryIdVoid: