From 2ffdc8b3ded7173a01a91359b730064f3b4ab17c Mon Sep 17 00:00:00 2001 From: Rose Hogenson Date: Tue, 28 Oct 2025 20:34:39 -0700 Subject: Rename to ccl It stands for "cute configuration language," but idk if that's really important --- ccl.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'ccl.go') diff --git a/ccl.go b/ccl.go index 926d78b..140c07b 100644 --- a/ccl.go +++ b/ccl.go @@ -2,8 +2,8 @@ // Mom: no we have textproto at home // textproto at home: // -// The asspb language has similar semantics to JSON, the only exception being -// the lack of null. +// The ccl language has similar semantics to JSON, the only exception being the +// lack of null. // // # Comments // @@ -156,7 +156,7 @@ // # Disclaimer // // This package is still experimental, expect breaking changes. -package asspb +package ccl import ( "bytes" @@ -699,7 +699,7 @@ func unpackStruct(out reflect.Value, fieldMap map[structField]int, msg map[strin return nil } -// Unmarshal parses a asspb message and writes the result into v. v must be a +// Unmarshal parses a ccl message and writes the result into v. v must be a // non-nil pointer to a struct. // // Unmarshal accepts a top-level message, which is equivalent to the "message" @@ -708,7 +708,7 @@ func unpackStruct(out reflect.Value, fieldMap map[structField]int, msg map[strin // key1: "val1" // key2: "val2" // -// The exact semantics of which asspb types map to which Go types is a bit +// The exact semantics of which ccl types map to which Go types is a bit // complicated and I don't feel like writing out all the rules, so suffice it // to say that the usual stuff should work. As a special case, a []byte field // expects a base64-encoded string. -- cgit v1.3.1