Commit e53a5474 authored by Eric Myhre's avatar Eric Myhre

Merge branch 'codegen-typofixes'

parents 6428f6bb 329252db
......@@ -40,7 +40,7 @@ func (g boolGenerator) EmitTypeConst(w io.Writer) {
`, w, g.AdjCfg, g)
}
// --- TypedNode boolerface satisfaction --->
// --- TypedNode interface satisfaction --->
func (g boolGenerator) EmitTypedNodeMethodType(w io.Writer) {
doTemplate(`
......@@ -54,7 +54,7 @@ func (g boolGenerator) EmitTypedNodeMethodRepresentation(w io.Writer) {
emitTypicalTypedNodeMethodRepresentation(w, g.AdjCfg, g)
}
// --- Node boolerface satisfaction --->
// --- Node interface satisfaction --->
func (g boolGenerator) EmitNodeType(w io.Writer) {
// No additional types needed. Methods all attach to the native type.
......
......@@ -40,7 +40,7 @@ func (g bytesGenerator) EmitTypeConst(w io.Writer) {
`, w, g.AdjCfg, g)
}
// --- TypedNode byteserface satisfaction --->
// --- TypedNode interface satisfaction --->
func (g bytesGenerator) EmitTypedNodeMethodType(w io.Writer) {
doTemplate(`
......@@ -54,7 +54,7 @@ func (g bytesGenerator) EmitTypedNodeMethodRepresentation(w io.Writer) {
emitTypicalTypedNodeMethodRepresentation(w, g.AdjCfg, g)
}
// --- Node byteserface satisfaction --->
// --- Node interface satisfaction --->
func (g bytesGenerator) EmitNodeType(w io.Writer) {
// No additional types needed. Methods all attach to the native type.
......
......@@ -40,7 +40,7 @@ func (g float64Generator) EmitTypeConst(w io.Writer) {
`, w, g.AdjCfg, g)
}
// --- TypedNode float64erface satisfaction --->
// --- TypedNode interface satisfaction --->
func (g float64Generator) EmitTypedNodeMethodType(w io.Writer) {
doTemplate(`
......@@ -54,7 +54,7 @@ func (g float64Generator) EmitTypedNodeMethodRepresentation(w io.Writer) {
emitTypicalTypedNodeMethodRepresentation(w, g.AdjCfg, g)
}
// --- Node float64erface satisfaction --->
// --- Node interface satisfaction --->
func (g float64Generator) EmitNodeType(w io.Writer) {
// No additional types needed. Methods all attach to the native type.
......
......@@ -40,7 +40,7 @@ func (g linkGenerator) EmitTypeConst(w io.Writer) {
`, w, g.AdjCfg, g)
}
// --- TypedNode linkerface satisfaction --->
// --- TypedNode interface satisfaction --->
func (g linkGenerator) EmitTypedNodeMethodType(w io.Writer) {
doTemplate(`
......@@ -63,7 +63,7 @@ func (g linkGenerator) EmitTypedNodeMethodRepresentation(w io.Writer) {
emitTypicalTypedNodeMethodRepresentation(w, g.AdjCfg, g)
}
// --- Node linkerface satisfaction --->
// --- Node interface satisfaction --->
func (g linkGenerator) EmitNodeType(w io.Writer) {
// No additional types needed. Methods all attach to the native type.
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment