fix error

This commit is contained in:
jverzani 2022-07-25 21:29:56 -04:00
parent 6712bb02c4
commit 200209e2c6
3 changed files with 5 additions and 5 deletions

View File

@ -1489,7 +1489,7 @@ numericq(0.1224)
When ``n=50`` what is the area of the Riemann sum?
```julia; hold=true; echo=false
numericq(0.1887)
numericq(0.1187)
```
Using `quadgk` what is the area under the curve?

View File

@ -1479,7 +1479,7 @@ When $n=50$ what is the area of the Riemann sum?
```{julia}
#| hold: true
#| echo: false
numericq(0.1887)
numericq(0.1187)
```
Using `quadgk` what is the area under the curve?

View File

@ -37,7 +37,8 @@ for DIR ∈ DIRS
if ext == ".jmd"
qmd_file = joinpath(DIR, fnm * ".qmd")
jmd_file = joinpath(dir, f)
if true || mtime(jmd_file) > mtime(qmd_file)
if mtime(jmd_file) > mtime(qmd_file)
@show :new, qmd_file
open(qmd_file, "w") do io
jmd2qmd(io, jmd_file)
end
@ -45,8 +46,7 @@ for DIR ∈ DIRS
else
_, ext = splitext(f)
ext == ".toml" && continue
f == "process.jl" && continueg
@show :cp, f
f == "process.jl" && continue
try
force = isfile(joinpath(DIR, f))
cp(joinpath(dir,f), joinpath(DIR,f), force=force)