std/rb.zig: fix comment

This commit is contained in:
Shawn Landden
2018-09-01 22:23:34 -07:00
committed by GitHub
parent 1a5c3e4501
commit 4bf54f3010

View File

@@ -19,7 +19,7 @@ const ReplaceError = error{NotEqual};
/// node: rb.Node,
/// value: i32,
/// };
/// fn number(node: *Node) Number {
/// fn number(node: *rb.Node) Number {
/// return @fieldParentPtr(Number, "node", node);
/// }
pub const Node = struct {