Fix a minor typo inside plugin API reference.

git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@4507 ea778897-0a13-0410-b9d1-a72fbfd435f5
This commit is contained in:
Frank Lanitz 2009-12-26 14:13:35 +00:00
parent 9b347f7c62
commit 3aead1e225
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2009-12-26 Frank Lanitz <frank@frank.uvena.de>
* doc/plugins.dox:
Fix a minor typo inside plugin API reference.
2009-12-20 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
* src/dialog.c, src/dialogs.h, src/document.c, src/prefs.c:

View File

@ -152,7 +152,7 @@ PluginCallback plugin_callbacks[] =
* Sent after the filetype of a document has been changed.
* The previous filetype object is passed but it can be NULL (e.g. at startup).
* The new filetype can be read with: @code
* GeanyFiletype *ft = doc->filetype;
* GeanyFiletype *ft = doc->file_type;
* @endcode
*
* @param obj a GeanyObject instance, should be ignored.