start of rename to cell

This commit is contained in:
2025-05-30 12:07:03 -05:00
parent f54200a7dd
commit 674eb237e0
424 changed files with 1070 additions and 1061 deletions

View File

@@ -3,7 +3,7 @@
Provides a consistent way to create documentation for prosperon elements. Objects are documented by adding docstrings directly to object-like things (functions, objects, ...), or to an object's own "doc object".
Docstrings are set to the symbol `prosperon.DOC`
Docstrings are set to the symbol `cell.DOC`
```js
// Suppose we have a module that returns a function
@@ -24,9 +24,9 @@ var greet = {
hello() { log.console('hello!') }
}
greet[prosperon.DOC] = {}
greet[prosperon.DOC][prosperon.DOC] = 'An object full of different greeter functions'
greet[prosperon.DOC].hello = 'A greeter that says, "hello!"'
greet[cell.DOC] = {}
greet[cell.DOC][cell.DOC] = 'An object full of different greeter functions'
greet[cell.DOC].hello = 'A greeter that says, "hello!"'
```