diff --git a/src/Doc/BuildDevDoc.cfg.in b/src/Doc/BuildDevDoc.cfg.in
index dfda719e82..1c0878ea43 100644
--- a/src/Doc/BuildDevDoc.cfg.in
+++ b/src/Doc/BuildDevDoc.cfg.in
@@ -1566,7 +1566,7 @@ HIDE_UNDOC_RELATIONS = YES
# toolkit from AT&T and Lucent Bell Labs. The other options in this section
# have no effect if this option is set to NO (the default)
-HAVE_DOT = NO
+HAVE_DOT = @HAVE_DOT@
# The DOT_NUM_THREADS specifies the number of dot invocations doxygen is
# allowed to run in parallel. When set to 0 (the default) doxygen will
diff --git a/src/Doc/CMakeLists.txt b/src/Doc/CMakeLists.txt
index ac445b484b..fe0774624b 100644
--- a/src/Doc/CMakeLists.txt
+++ b/src/Doc/CMakeLists.txt
@@ -4,6 +4,7 @@ if(DOXYGEN_FOUND)
IF (DOXYGEN_DOT_EXECUTABLE)
SET(HAVE_DOT YES)
ELSE (DOXYGEN_DOT_EXECUTABLE)
+ message("Note: Doxygen docs will look better with graphviz's dot installed.")
SET(HAVE_DOT NO)
ENDIF (DOXYGEN_DOT_EXECUTABLE)
diff --git a/src/Doc/doctips.dox b/src/Doc/doctips.dox
index 2cb587bea2..a11981cd3d 100644
--- a/src/Doc/doctips.dox
+++ b/src/Doc/doctips.dox
@@ -1,6 +1,9 @@
/** \page doctips Documenting FreeCAD's code
-Below are a few remarks and notes about Doxygen usage for FreeCAD, gathered after examining and removing most of the warnings emited by Doxygen:
+Below are a few remarks and notes about Doxygen usage for FreeCAD,
+gathered after examining and removing most of the warnings emitted
+by Doxygen. For information on (re)building the source docs, see
+\ref makingdocs
- Pay attention to warnings emited by doxygen when building the doc.
The item giving rise to the warning will be skipped and will not be
diff --git a/src/Doc/mainpage.dox b/src/Doc/mainpage.dox
index e871d2a13a..b2ef1fd7dd 100644
--- a/src/Doc/mainpage.dox
+++ b/src/Doc/mainpage.dox
@@ -38,7 +38,7 @@
Wiki
FreeCAD being a fast moving target, don't hesitate to rebuild an up to
- date doc from svn source as often as needed. CPU cycles are cheap
+ date doc from source as often as needed (\ref makingdocs "more info"). CPU cycles are cheap
nowadays!
The homepage of FreeCAD is here.
diff --git a/src/Gui/DlgKeyboardImp.h b/src/Gui/DlgKeyboardImp.h
index 29ca3d63b1..e32448fe4a 100644
--- a/src/Gui/DlgKeyboardImp.h
+++ b/src/Gui/DlgKeyboardImp.h
@@ -33,7 +33,7 @@ namespace Dialog {
/** Shows an overview of all available commands of all groups and modules.
* You can customize your workbenches just by drag&dropping any commands
* onto the toolbars or commandbars. But you cannot modify any standard toolbars or
- * commandbars such as "File, View, ...". It is only poosible to
+ * commandbars such as "File, View, ...". It is only possible to
* customize your own toolbars or commandbars.
* \author Werner Mayer
*/