Fixed some typos in doc

This commit is contained in:
Guillaume Bury 2016-12-01 15:50:57 +01:00
parent 8896ce2b79
commit 3cefd85b21
5 changed files with 10 additions and 13 deletions

View file

@ -1,6 +1,6 @@
#!/bin/bash -e
# Enssure we are on master branch
# Ensure we are on master branch
git checkout master
# Generate documentation

View file

@ -7,7 +7,7 @@ version=`cat VERSION`
git checkout master
# Generate documentation
(cd src && make doc)
make doc
(cd doc && asciidoc index.txt)
# Checkout gh-pages
@ -19,7 +19,7 @@ mkdir -p ./$version
# Copy doc to the right locations
cp doc/index.html ./
cp src/dolmen.docdir/* ./$version/
cp msat.docdir/* ./$version/
# Add potentially new pages
git add ./$version/*

View file

@ -24,7 +24,7 @@ Theory_intf
The following modules allow the creation of a McSat solver (Model Constructing solver):
{!odules:
{!modules:
Mcsolver
Expr_intf
Plugin_intf
@ -32,7 +32,7 @@ Plugin_intf
Lastly, mSAT also provides an implementation of Tseitin's CNF conversion:
{!modules
{!modules:
Tseitin
Tseitin_intf
}

View file

@ -26,22 +26,18 @@ backend/Dot
backend/Dedukti
backend/Backend_intf
# Auxiliary
util/Hashcons
# SAT solver frontend
sat/Expr_sat
sat/Sat
sat/Expr_sat
sat/Type_sat
# SMT solver frontend
smt/Expr_smt
smt/Smt
smt/Expr_smt
smt/Type_smt
smt/Unionfind
# MCsat
mcsat/Eclosure
# MCsat solver frontend
mcsat/Mcsat
mcsat/Eclosure
mcsat/Plugin_mcsat

View file

@ -8,3 +8,4 @@ module type S = Tseitin_intf.S
module Make : functor
(F : Tseitin_intf.Arg) -> S with type atom = F.t