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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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 {