Skip to content

Commit

Permalink
Cleanup comments
Browse files Browse the repository at this point in the history
  • Loading branch information
mauro committed Jul 12, 2024
1 parent 00d3407 commit 1b98174
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 16 deletions.
16 changes: 1 addition & 15 deletions nbs/00_core.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -69,21 +69,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"We want a code generator, but before, we need a class to hold data while doing code generation. For this reason, the first class we are developing is creatively named `Data`"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"We'll see later that our nodes/elements will be nested, creating a parent-children. Instead of backing that in, we'll create that with a mixin, because we'll need it for other purposes later."
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"So now, we can make the class to hold the data"
"Out code generator will need a class to hold data while doing code generation. For this reason, the first class we are developing is creatively named `Data`"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion sal/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from collections import ChainMap
from typing import Any, Generator, Sequence, Optional

# %% ../nbs/00_core.ipynb 9
# %% ../nbs/00_core.ipynb 7
class Data:
"""
Data holder used during code generation. Logic is kept as separate functions.
Expand Down

0 comments on commit 1b98174

Please sign in to comment.